From 58b9ce5946c5fea9b6f1a9f1c0c9641c5104d769 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Thu, 16 Apr 2009 10:57:35 -0400 Subject: [PATCH 01/15] Better license check. Tokenise CC license parts and check for compatability. Fallback is old directly-equal test. --- lib/util.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/util.php b/lib/util.php index b6e89f0bd9..00696583ee 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1360,9 +1360,28 @@ function common_memcache() } } +function common_license_terms($uri) +{ + if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) { + return explode('-',$matches[1]); + } + return array($uri); +} + function common_compatible_license($from, $to) { + $from_terms = common_license_terms($from); + // public domain and cc-by are compatible with everything + if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) { + return true; + } + $to_terms = common_license_terms($to); + // sa is compatible across versions. IANAL + if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) { + return count(array_diff($from_terms, $to_terms)) == 0; + } // XXX: better compatibility check needed here! + // Should at least normalise URIs return ($from == $to); } From 8d35831b54d6ff8f732f2e91c4153b90c3ed7a4f Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 16:42:50 +0000 Subject: [PATCH 02/15] Fixed object string name --- js/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/util.js b/js/util.js index b572846b7c..bd0d6b07ba 100644 --- a/js/util.js +++ b/js/util.js @@ -97,11 +97,11 @@ var SN = { // StatusNet SubmitOnReturn: function(event, el) { if (event.keyCode == 13 || event.keyCode == 10) { + $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); + $('body').focus(); el.submit(); event.preventDefault(); event.stopPropagation(); - $('#'+el[0].id+' #'+SN.U.NoticeDataText).blur(); - $('body').focus(); return false; } return true; From c3cac436e2e5f142010a16a1271253bcda0ebb30 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 16:55:47 +0000 Subject: [PATCH 03/15] Fixed object string name and order for submitonreturn actions --- js/util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/util.js b/js/util.js index bd0d6b07ba..6ce1084b74 100644 --- a/js/util.js +++ b/js/util.js @@ -97,11 +97,11 @@ var SN = { // StatusNet SubmitOnReturn: function(event, el) { if (event.keyCode == 13 || event.keyCode == 10) { - $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); - $('body').focus(); el.submit(); event.preventDefault(); event.stopPropagation(); + $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); + $('body').focus(); return false; } return true; @@ -213,7 +213,7 @@ var SN = { // StatusNet } else { $('#'+form_id+' #'+SN.C.S.NoticeDataText).val(''); - SN.U.NoticeFormEnhancements($('#'+SN.C.S.FormNotice)); + SN.U.FormNoticeEnhancements($('#'+SN.C.S.FormNotice)); } } } From b579a306c7449cc5cd3a6c2a8f729c1e828ee0c3 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:06:52 +0000 Subject: [PATCH 04/15] Ran through JSLint --- js/util.js | 68 +++++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 31 deletions(-) diff --git a/js/util.js b/js/util.js index 6ce1084b74..051efb6b91 100644 --- a/js/util.js +++ b/js/util.js @@ -24,29 +24,6 @@ * @link http://status.net/ */ -$(document).ready(function(){ - if ($('body.user_in').length > 0) { - $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); - - $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); - $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); - $('.form_favor').each(function() { SN.U.FormXHR($(this)); }); - $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); }); - $('.form_group_join').each(function() { SN.U.FormXHR($(this)); }); - $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); }); - $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); }); - - SN.U.NoticeReply(); - - SN.U.NoticeDataAttach(); - - SN.U.NewDirectMessage(); - } - - SN.U.NoticeAttachments(); -}); - - var SN = { // StatusNet C: { // Config I: { // Init @@ -122,7 +99,7 @@ var SN = { // StatusNet var counter = $('#'+form_id+' #'+SN.C.S.NoticeTextCount); if (remaining.toString() != counter.text()) { - if (!SN.C.I.CounterBlackout || remaining == 0) { + if (!SN.C.I.CounterBlackout || remaining === 0) { if (counter.text() != String(remaining)) { counter.text(remaining); } @@ -219,8 +196,9 @@ var SN = { // StatusNet } }, success: function(data, textStatus) { + var result; if ($('#'+SN.C.S.Error, data).length > 0) { - var result = document._importNode($('p', data)[0], true); + result = document._importNode($('p', data)[0], true); alert(result.textContent || result.innerHTML); } else { @@ -229,12 +207,12 @@ var SN = { // StatusNet } if ($('#'+SN.C.S.CommandResult, data).length > 0) { - var result = document._importNode($('p', data)[0], true); + result = document._importNode($('p', data)[0], true); alert(result.textContent || result.innerHTML); } else { notice = document._importNode($('li', data)[0], true); - if ($('#'+notice.id).length == 0) { + if ($('#'+notice.id).length === 0) { var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val(); var notice_irt = '#notices_primary #notice-'+notice_irt_value; if($('body')[0].id == 'conversation') { @@ -330,7 +308,7 @@ var SN = { // StatusNet $("a.thumbnail").children('img').hide(); anchor.closest(".entry-title").addClass('ov'); - if (anchor.children('img').length == 0) { + if (anchor.children('img').length === 0) { t = setTimeout(function() { $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { anchor.append(data); @@ -354,7 +332,12 @@ var SN = { // StatusNet NDA.change(function() { S = '
'+$(this).val()+'
'; NDAS = $('#'+SN.C.S.NoticeDataAttachSelected); - (NDAS.length > 0) ? NDAS.replaceWith(S) : $('#'+SN.C.S.FormNotice).append(S); + if (NDAS.length > 0) { + NDAS.replaceWith(S); + } + else { + $('#'+SN.C.S.FormNotice).append(S); + } $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){ $('#'+SN.C.S.NoticeDataAttachSelected).remove(); NDA.val(''); @@ -367,7 +350,7 @@ var SN = { // StatusNet NDM.attr({'href':NDM.attr('href')+'&ajax=1'}); NDM.click(function() { var NDMF = $('.entity_send-a-message form'); - if (NDMF.length == 0) { + if (NDMF.length === 0) { $.get(NDM.attr('href'), null, function(data) { $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); @@ -387,4 +370,27 @@ var SN = { // StatusNet }); } } -} +}; + +$(document).ready(function(){ + if ($('body.user_in').length > 0) { + $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); + + $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); + $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); + $('.form_favor').each(function() { SN.U.FormXHR($(this)); }); + $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); }); + $('.form_group_join').each(function() { SN.U.FormXHR($(this)); }); + $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); }); + $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); }); + + SN.U.NoticeReply(); + + SN.U.NoticeDataAttach(); + + SN.U.NewDirectMessage(); + } + + SN.U.NoticeAttachments(); +}); + From 73b9e531bf7cab8ba6642f9cb85e4b37b48706d7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 09:08:26 -0800 Subject: [PATCH 05/15] Detect "no file" upload error and, for now at least, ignore it gracefully. This was triggering on non-AJAX form submissions for new notices, preventing them from being posted when they contained no attachments. --- lib/imagefile.php | 5 +++++ lib/mediafile.php | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/lib/imagefile.php b/lib/imagefile.php index 88f4614814..cd2f87e6bd 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -79,7 +79,12 @@ class ImageFile @unlink($_FILES[$param]['tmp_name']); throw new Exception(_('Partial upload.')); return; + case UPLOAD_ERR_NO_FILE: + // No file; probably just a non-AJAX submission. + return; default: + common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . + $_FILES[$param]['error']); throw new Exception(_('System error uploading file.')); return; } diff --git a/lib/mediafile.php b/lib/mediafile.php index d4d184dd0f..29d752f0c6 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -152,6 +152,9 @@ class MediaFile throw new ClientException(_('The uploaded file was only' . ' partially uploaded.')); return; + case UPLOAD_ERR_NO_FILE: + // No file; probably just a non-AJAX submission. + return; case UPLOAD_ERR_NO_TMP_DIR: throw new ClientException(_('Missing a temporary folder.')); return; @@ -162,6 +165,8 @@ class MediaFile throw new ClientException(_('File upload stopped by extension.')); return; default: + common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . + $_FILES[$param]['error']); throw new ClientException(_('System error uploading file.')); return; } From 5581143bee602dbd5417f532f2b483e58d0a4269 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Oct 2009 15:29:20 -0400 Subject: [PATCH 06/15] Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, adding redirect handling and convenience functions. Caching support will be added in future work after unit tests have been added. * extlib: add PEAR HTTP_Request2 0.4.1 alpha * extlib: update PEAR Net_URL2 to 0.3.0 beta for HTTP_Request2 compatibility * moved direct usage of CURL and file_get_contents to HTTPClient class, excluding external-sourced libraries * adapted GeonamesPlugin for new HTTPResponse interface Note some plugins haven't been fully tested yet. --- classes/File_redirection.php | 66 +- extlib/HTTP/Request2.php | 844 +++++++++++++++ extlib/HTTP/Request2/Adapter.php | 152 +++ extlib/HTTP/Request2/Adapter/Curl.php | 383 +++++++ extlib/HTTP/Request2/Adapter/Mock.php | 171 +++ extlib/HTTP/Request2/Adapter/Socket.php | 971 ++++++++++++++++++ extlib/HTTP/Request2/Exception.php | 62 ++ extlib/HTTP/Request2/MultipartBody.php | 274 +++++ extlib/HTTP/Request2/Observer/Log.php | 215 ++++ extlib/HTTP/Request2/Response.php | 549 ++++++++++ extlib/Net/URL2.php | 471 +++++---- install.php | 7 + lib/Shorturl_api.php | 24 +- lib/curlclient.php | 179 ---- lib/default.php | 2 - lib/httpclient.php | 237 ++++- lib/oauthclient.php | 63 +- lib/ping.php | 12 +- lib/snapshot.php | 21 +- plugins/BlogspamNetPlugin.php | 15 +- plugins/GeonamesPlugin.php | 16 +- plugins/LilUrl/LilUrlPlugin.php | 5 +- plugins/LinkbackPlugin.php | 21 +- plugins/SimpleUrl/SimpleUrlPlugin.php | 11 +- .../daemons/synctwitterfriends.php | 4 +- .../daemons/twitterstatusfetcher.php | 43 +- plugins/TwitterBridge/twitter.php | 2 +- .../TwitterBridge/twitterauthorization.php | 2 +- .../TwitterBridge/twitterbasicauthclient.php | 68 +- plugins/WikiHashtagsPlugin.php | 15 +- scripts/enjitqueuehandler.php | 58 +- 31 files changed, 4285 insertions(+), 678 deletions(-) create mode 100644 extlib/HTTP/Request2.php create mode 100644 extlib/HTTP/Request2/Adapter.php create mode 100644 extlib/HTTP/Request2/Adapter/Curl.php create mode 100644 extlib/HTTP/Request2/Adapter/Mock.php create mode 100644 extlib/HTTP/Request2/Adapter/Socket.php create mode 100644 extlib/HTTP/Request2/Exception.php create mode 100644 extlib/HTTP/Request2/MultipartBody.php create mode 100644 extlib/HTTP/Request2/Observer/Log.php create mode 100644 extlib/HTTP/Request2/Response.php delete mode 100644 lib/curlclient.php diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 79052bf7d3..08a6e8d8be 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -47,18 +47,15 @@ class File_redirection extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function _commonCurl($url, $redirs) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_URL, $url); - curl_setopt($curlh, CURLOPT_AUTOREFERER, true); // # setup referer header when folowing redirects - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 10); // # seconds to wait - curl_setopt($curlh, CURLOPT_MAXREDIRS, $redirs); // # max number of http redirections to follow - curl_setopt($curlh, CURLOPT_USERAGENT, USER_AGENT); - curl_setopt($curlh, CURLOPT_FOLLOWLOCATION, true); // Follow redirects - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - curl_setopt($curlh, CURLOPT_FILETIME, true); - curl_setopt($curlh, CURLOPT_HEADER, true); // Include header in output - return $curlh; + static function _commonHttp($url, $redirs) { + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 10, // # seconds to wait + 'max_redirs' => $redirs, // # max number of http redirections to follow + 'follow_redirects' => true, // Follow redirects + 'store_body' => false, // We won't need body content here. + )); + return $request; } function _redirectWhere_imp($short_url, $redirs = 10, $protected = false) { @@ -82,32 +79,39 @@ class File_redirection extends Memcached_DataObject if(strpos($short_url,'://') === false){ return $short_url; } - $curlh = File_redirection::_commonCurl($short_url, $redirs); - // Don't include body in output - curl_setopt($curlh, CURLOPT_NOBODY, true); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + try { + $request = self::_commonHttp($short_url, $redirs); + // Don't include body in output + $request->setMethod(HTTP_Request2::METHOD_HEAD); + $response = $request->send(); - if (405 == $info['http_code']) { - $curlh = File_redirection::_commonCurl($short_url, $redirs); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + if (405 == $response->getStatus()) { + // Server doesn't support HEAD method? Can this really happen? + // We'll try again as a GET and ignore the response data. + $request = self::_commonHttp($short_url, $redirs); + $response = $request->send(); + } + } catch (Exception $e) { + // Invalid URL or failure to reach server + return $short_url; } - if (!empty($info['redirect_count']) && File::isProtected($info['url'])) { - return File_redirection::_redirectWhere_imp($short_url, $info['redirect_count'] - 1, true); + if ($response->getRedirectCount() && File::isProtected($response->getUrl())) { + // Bump back up the redirect chain until we find a non-protected URL + return self::_redirectWhere_imp($short_url, $response->getRedirectCount() - 1, true); } - $ret = array('code' => $info['http_code'] - , 'redirects' => $info['redirect_count'] - , 'url' => $info['url']); + $ret = array('code' => $response->getStatus() + , 'redirects' => $response->getRedirectCount() + , 'url' => $response->getUrl()); - if (!empty($info['content_type'])) $ret['type'] = $info['content_type']; + $type = $response->getHeader('Content-Type'); + if ($type) $ret['type'] = $type; if ($protected) $ret['protected'] = true; - if (!empty($info['download_content_length'])) $ret['size'] = $info['download_content_length']; - if (isset($info['filetime']) && ($info['filetime'] > 0)) $ret['time'] = $info['filetime']; + $size = $response->getHeader('Content-Length'); // @fixme bytes? + if ($size) $ret['size'] = $size; + $time = $response->getHeader('Last-Modified'); + if ($time) $ret['time'] = strtotime($time); return $ret; } diff --git a/extlib/HTTP/Request2.php b/extlib/HTTP/Request2.php new file mode 100644 index 0000000000..e06bb86bca --- /dev/null +++ b/extlib/HTTP/Request2.php @@ -0,0 +1,844 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Request2.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * A class representing an URL as per RFC 3986. + */ +require_once 'Net/URL2.php'; + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP request + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-5 + */ +class HTTP_Request2 implements SplSubject +{ + /**#@+ + * Constants for HTTP request methods + * + * @link http://tools.ietf.org/html/rfc2616#section-5.1.1 + */ + const METHOD_OPTIONS = 'OPTIONS'; + const METHOD_GET = 'GET'; + const METHOD_HEAD = 'HEAD'; + const METHOD_POST = 'POST'; + const METHOD_PUT = 'PUT'; + const METHOD_DELETE = 'DELETE'; + const METHOD_TRACE = 'TRACE'; + const METHOD_CONNECT = 'CONNECT'; + /**#@-*/ + + /**#@+ + * Constants for HTTP authentication schemes + * + * @link http://tools.ietf.org/html/rfc2617 + */ + const AUTH_BASIC = 'basic'; + const AUTH_DIGEST = 'digest'; + /**#@-*/ + + /** + * Regular expression used to check for invalid symbols in RFC 2616 tokens + * @link http://pear.php.net/bugs/bug.php?id=15630 + */ + const REGEXP_INVALID_TOKEN = '![\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]!'; + + /** + * Regular expression used to check for invalid symbols in cookie strings + * @link http://pear.php.net/bugs/bug.php?id=15630 + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + const REGEXP_INVALID_COOKIE = '/[\s,;]/'; + + /** + * Fileinfo magic database resource + * @var resource + * @see detectMimeType() + */ + private static $_fileinfoDb; + + /** + * Observers attached to the request (instances of SplObserver) + * @var array + */ + protected $observers = array(); + + /** + * Request URL + * @var Net_URL2 + */ + protected $url; + + /** + * Request method + * @var string + */ + protected $method = self::METHOD_GET; + + /** + * Authentication data + * @var array + * @see getAuth() + */ + protected $auth; + + /** + * Request headers + * @var array + */ + protected $headers = array(); + + /** + * Configuration parameters + * @var array + * @see setConfig() + */ + protected $config = array( + 'adapter' => 'HTTP_Request2_Adapter_Socket', + 'connect_timeout' => 10, + 'timeout' => 0, + 'use_brackets' => true, + 'protocol_version' => '1.1', + 'buffer_size' => 16384, + 'store_body' => true, + + 'proxy_host' => '', + 'proxy_port' => '', + 'proxy_user' => '', + 'proxy_password' => '', + 'proxy_auth_scheme' => self::AUTH_BASIC, + + 'ssl_verify_peer' => true, + 'ssl_verify_host' => true, + 'ssl_cafile' => null, + 'ssl_capath' => null, + 'ssl_local_cert' => null, + 'ssl_passphrase' => null, + + 'digest_compat_ie' => false + ); + + /** + * Last event in request / response handling, intended for observers + * @var array + * @see getLastEvent() + */ + protected $lastEvent = array( + 'name' => 'start', + 'data' => null + ); + + /** + * Request body + * @var string|resource + * @see setBody() + */ + protected $body = ''; + + /** + * Array of POST parameters + * @var array + */ + protected $postParams = array(); + + /** + * Array of file uploads (for multipart/form-data POST requests) + * @var array + */ + protected $uploads = array(); + + /** + * Adapter used to perform actual HTTP request + * @var HTTP_Request2_Adapter + */ + protected $adapter; + + + /** + * Constructor. Can set request URL, method and configuration array. + * + * Also sets a default value for User-Agent header. + * + * @param string|Net_Url2 Request URL + * @param string Request method + * @param array Configuration for this Request instance + */ + public function __construct($url = null, $method = self::METHOD_GET, array $config = array()) + { + if (!empty($url)) { + $this->setUrl($url); + } + if (!empty($method)) { + $this->setMethod($method); + } + $this->setConfig($config); + $this->setHeader('user-agent', 'HTTP_Request2/0.4.1 ' . + '(http://pear.php.net/package/http_request2) ' . + 'PHP/' . phpversion()); + } + + /** + * Sets the URL for this request + * + * If the URL has userinfo part (username & password) these will be removed + * and converted to auth data. If the URL does not have a path component, + * that will be set to '/'. + * + * @param string|Net_URL2 Request URL + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setUrl($url) + { + if (is_string($url)) { + $url = new Net_URL2($url); + } + if (!$url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('Parameter is not a valid HTTP URL'); + } + // URL contains username / password? + if ($url->getUserinfo()) { + $username = $url->getUser(); + $password = $url->getPassword(); + $this->setAuth(rawurldecode($username), $password? rawurldecode($password): ''); + $url->setUserinfo(''); + } + if ('' == $url->getPath()) { + $url->setPath('/'); + } + $this->url = $url; + + return $this; + } + + /** + * Returns the request URL + * + * @return Net_URL2 + */ + public function getUrl() + { + return $this->url; + } + + /** + * Sets the request method + * + * @param string + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception if the method name is invalid + */ + public function setMethod($method) + { + // Method name should be a token: http://tools.ietf.org/html/rfc2616#section-5.1.1 + if (preg_match(self::REGEXP_INVALID_TOKEN, $method)) { + throw new HTTP_Request2_Exception("Invalid request method '{$method}'"); + } + $this->method = $method; + + return $this; + } + + /** + * Returns the request method + * + * @return string + */ + public function getMethod() + { + return $this->method; + } + + /** + * Sets the configuration parameter(s) + * + * The following parameters are available: + *
    + *
  • 'adapter' - adapter to use (string)
  • + *
  • 'connect_timeout' - Connection timeout in seconds (integer)
  • + *
  • 'timeout' - Total number of seconds a request can take. + * Use 0 for no limit, should be greater than + * 'connect_timeout' if set (integer)
  • + *
  • 'use_brackets' - Whether to append [] to array variable names (bool)
  • + *
  • 'protocol_version' - HTTP Version to use, '1.0' or '1.1' (string)
  • + *
  • 'buffer_size' - Buffer size to use for reading and writing (int)
  • + *
  • 'store_body' - Whether to store response body in response object. + * Set to false if receiving a huge response and + * using an Observer to save it (boolean)
  • + *
  • 'proxy_host' - Proxy server host (string)
  • + *
  • 'proxy_port' - Proxy server port (integer)
  • + *
  • 'proxy_user' - Proxy auth username (string)
  • + *
  • 'proxy_password' - Proxy auth password (string)
  • + *
  • 'proxy_auth_scheme' - Proxy auth scheme, one of HTTP_Request2::AUTH_* constants (string)
  • + *
  • 'ssl_verify_peer' - Whether to verify peer's SSL certificate (bool)
  • + *
  • 'ssl_verify_host' - Whether to check that Common Name in SSL + * certificate matches host name (bool)
  • + *
  • 'ssl_cafile' - Cerificate Authority file to verify the peer + * with (use with 'ssl_verify_peer') (string)
  • + *
  • 'ssl_capath' - Directory holding multiple Certificate + * Authority files (string)
  • + *
  • 'ssl_local_cert' - Name of a file containing local cerificate (string)
  • + *
  • 'ssl_passphrase' - Passphrase with which local certificate + * was encoded (string)
  • + *
  • 'digest_compat_ie' - Whether to imitate behaviour of MSIE 5 and 6 + * in using URL without query string in digest + * authentication (boolean)
  • + *
+ * + * @param string|array configuration parameter name or array + * ('parameter name' => 'parameter value') + * @param mixed parameter value if $nameOrConfig is not an array + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function setConfig($nameOrConfig, $value = null) + { + if (is_array($nameOrConfig)) { + foreach ($nameOrConfig as $name => $value) { + $this->setConfig($name, $value); + } + + } else { + if (!array_key_exists($nameOrConfig, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$nameOrConfig}'" + ); + } + $this->config[$nameOrConfig] = $value; + } + + return $this; + } + + /** + * Returns the value(s) of the configuration parameter(s) + * + * @param string parameter name + * @return mixed value of $name parameter, array of all configuration + * parameters if $name is not given + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function getConfig($name = null) + { + if (null === $name) { + return $this->config; + } elseif (!array_key_exists($name, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$name}'" + ); + } + return $this->config[$name]; + } + + /** + * Sets the autentification data + * + * @param string user name + * @param string password + * @param string authentication scheme + * @return HTTP_Request2 + */ + public function setAuth($user, $password = '', $scheme = self::AUTH_BASIC) + { + if (empty($user)) { + $this->auth = null; + } else { + $this->auth = array( + 'user' => (string)$user, + 'password' => (string)$password, + 'scheme' => $scheme + ); + } + + return $this; + } + + /** + * Returns the authentication data + * + * The array has the keys 'user', 'password' and 'scheme', where 'scheme' + * is one of the HTTP_Request2::AUTH_* constants. + * + * @return array + */ + public function getAuth() + { + return $this->auth; + } + + /** + * Sets request header(s) + * + * The first parameter may be either a full header string 'header: value' or + * header name. In the former case $value parameter is ignored, in the latter + * the header's value will either be set to $value or the header will be + * removed if $value is null. The first parameter can also be an array of + * headers, in that case method will be called recursively. + * + * Note that headers are treated case insensitively as per RFC 2616. + * + * + * $req->setHeader('Foo: Bar'); // sets the value of 'Foo' header to 'Bar' + * $req->setHeader('FoO', 'Baz'); // sets the value of 'Foo' header to 'Baz' + * $req->setHeader(array('foo' => 'Quux')); // sets the value of 'Foo' header to 'Quux' + * $req->setHeader('FOO'); // removes 'Foo' header from request + * + * + * @param string|array header name, header string ('Header: value') + * or an array of headers + * @param string|null header value, header will be removed if null + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setHeader($name, $value = null) + { + if (is_array($name)) { + foreach ($name as $k => $v) { + if (is_string($k)) { + $this->setHeader($k, $v); + } else { + $this->setHeader($v); + } + } + } else { + if (null === $value && strpos($name, ':')) { + list($name, $value) = array_map('trim', explode(':', $name, 2)); + } + // Header name should be a token: http://tools.ietf.org/html/rfc2616#section-4.2 + if (preg_match(self::REGEXP_INVALID_TOKEN, $name)) { + throw new HTTP_Request2_Exception("Invalid header name '{$name}'"); + } + // Header names are case insensitive anyway + $name = strtolower($name); + if (null === $value) { + unset($this->headers[$name]); + } else { + $this->headers[$name] = $value; + } + } + + return $this; + } + + /** + * Returns the request headers + * + * The array is of the form ('header name' => 'header value'), header names + * are lowercased + * + * @return array + */ + public function getHeaders() + { + return $this->headers; + } + + /** + * Appends a cookie to "Cookie:" header + * + * @param string cookie name + * @param string cookie value + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addCookie($name, $value) + { + $cookie = $name . '=' . $value; + if (preg_match(self::REGEXP_INVALID_COOKIE, $cookie)) { + throw new HTTP_Request2_Exception("Invalid cookie: '{$cookie}'"); + } + $cookies = empty($this->headers['cookie'])? '': $this->headers['cookie'] . '; '; + $this->setHeader('cookie', $cookies . $cookie); + + return $this; + } + + /** + * Sets the request body + * + * @param string Either a string with the body or filename containing body + * @param bool Whether first parameter is a filename + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setBody($body, $isFilename = false) + { + if (!$isFilename) { + $this->body = (string)$body; + } else { + if (!($fp = @fopen($body, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$body}"); + } + $this->body = $fp; + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', self::detectMimeType($body)); + } + } + + return $this; + } + + /** + * Returns the request body + * + * @return string|resource|HTTP_Request2_MultipartBody + */ + public function getBody() + { + if (self::METHOD_POST == $this->method && + (!empty($this->postParams) || !empty($this->uploads)) + ) { + if ('application/x-www-form-urlencoded' == $this->headers['content-type']) { + $body = http_build_query($this->postParams, '', '&'); + if (!$this->getConfig('use_brackets')) { + $body = preg_replace('/%5B\d+%5D=/', '=', $body); + } + // support RFC 3986 by not encoding '~' symbol (request #15368) + return str_replace('%7E', '~', $body); + + } elseif ('multipart/form-data' == $this->headers['content-type']) { + require_once 'HTTP/Request2/MultipartBody.php'; + return new HTTP_Request2_MultipartBody( + $this->postParams, $this->uploads, $this->getConfig('use_brackets') + ); + } + } + return $this->body; + } + + /** + * Adds a file to form-based file upload + * + * Used to emulate file upload via a HTML form. The method also sets + * Content-Type of HTTP request to 'multipart/form-data'. + * + * If you just want to send the contents of a file as the body of HTTP + * request you should use setBody() method. + * + * @param string name of file-upload field + * @param mixed full name of local file + * @param string filename to send in the request + * @param string content-type of file being uploaded + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addUpload($fieldName, $filename, $sendFilename = null, + $contentType = null) + { + if (!is_array($filename)) { + if (!($fp = @fopen($filename, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$filename}"); + } + $this->uploads[$fieldName] = array( + 'fp' => $fp, + 'filename' => empty($sendFilename)? basename($filename): $sendFilename, + 'size' => filesize($filename), + 'type' => empty($contentType)? self::detectMimeType($filename): $contentType + ); + } else { + $fps = $names = $sizes = $types = array(); + foreach ($filename as $f) { + if (!is_array($f)) { + $f = array($f); + } + if (!($fp = @fopen($f[0], 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$f[0]}"); + } + $fps[] = $fp; + $names[] = empty($f[1])? basename($f[0]): $f[1]; + $sizes[] = filesize($f[0]); + $types[] = empty($f[2])? self::detectMimeType($f[0]): $f[2]; + } + $this->uploads[$fieldName] = array( + 'fp' => $fps, 'filename' => $names, 'size' => $sizes, 'type' => $types + ); + } + if (empty($this->headers['content-type']) || + 'application/x-www-form-urlencoded' == $this->headers['content-type'] + ) { + $this->setHeader('content-type', 'multipart/form-data'); + } + + return $this; + } + + /** + * Adds POST parameter(s) to the request. + * + * @param string|array parameter name or array ('name' => 'value') + * @param mixed parameter value (can be an array) + * @return HTTP_Request2 + */ + public function addPostParameter($name, $value = null) + { + if (!is_array($name)) { + $this->postParams[$name] = $value; + } else { + foreach ($name as $k => $v) { + $this->addPostParameter($k, $v); + } + } + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', 'application/x-www-form-urlencoded'); + } + + return $this; + } + + /** + * Attaches a new observer + * + * @param SplObserver + */ + public function attach(SplObserver $observer) + { + foreach ($this->observers as $attached) { + if ($attached === $observer) { + return; + } + } + $this->observers[] = $observer; + } + + /** + * Detaches an existing observer + * + * @param SplObserver + */ + public function detach(SplObserver $observer) + { + foreach ($this->observers as $key => $attached) { + if ($attached === $observer) { + unset($this->observers[$key]); + return; + } + } + } + + /** + * Notifies all observers + */ + public function notify() + { + foreach ($this->observers as $observer) { + $observer->update($this); + } + } + + /** + * Sets the last event + * + * Adapters should use this method to set the current state of the request + * and notify the observers. + * + * @param string event name + * @param mixed event data + */ + public function setLastEvent($name, $data = null) + { + $this->lastEvent = array( + 'name' => $name, + 'data' => $data + ); + $this->notify(); + } + + /** + * Returns the last event + * + * Observers should use this method to access the last change in request. + * The following event names are possible: + *
    + *
  • 'connect' - after connection to remote server, + * data is the destination (string)
  • + *
  • 'disconnect' - after disconnection from server
  • + *
  • 'sentHeaders' - after sending the request headers, + * data is the headers sent (string)
  • + *
  • 'sentBodyPart' - after sending a part of the request body, + * data is the length of that part (int)
  • + *
  • 'receivedHeaders' - after receiving the response headers, + * data is HTTP_Request2_Response object
  • + *
  • 'receivedBodyPart' - after receiving a part of the response + * body, data is that part (string)
  • + *
  • 'receivedEncodedBodyPart' - as 'receivedBodyPart', but data is still + * encoded by Content-Encoding
  • + *
  • 'receivedBody' - after receiving the complete response + * body, data is HTTP_Request2_Response object
  • + *
+ * Different adapters may not send all the event types. Mock adapter does + * not send any events to the observers. + * + * @return array The array has two keys: 'name' and 'data' + */ + public function getLastEvent() + { + return $this->lastEvent; + } + + /** + * Sets the adapter used to actually perform the request + * + * You can pass either an instance of a class implementing HTTP_Request2_Adapter + * or a class name. The method will only try to include a file if the class + * name starts with HTTP_Request2_Adapter_, it will also try to prepend this + * prefix to the class name if it doesn't contain any underscores, so that + * + * $request->setAdapter('curl'); + * + * will work. + * + * @param string|HTTP_Request2_Adapter + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setAdapter($adapter) + { + if (is_string($adapter)) { + if (!class_exists($adapter, false)) { + if (false === strpos($adapter, '_')) { + $adapter = 'HTTP_Request2_Adapter_' . ucfirst($adapter); + } + if (preg_match('/^HTTP_Request2_Adapter_([a-zA-Z0-9]+)$/', $adapter)) { + include_once str_replace('_', DIRECTORY_SEPARATOR, $adapter) . '.php'; + } + if (!class_exists($adapter, false)) { + throw new HTTP_Request2_Exception("Class {$adapter} not found"); + } + } + $adapter = new $adapter; + } + if (!$adapter instanceof HTTP_Request2_Adapter) { + throw new HTTP_Request2_Exception('Parameter is not a HTTP request adapter'); + } + $this->adapter = $adapter; + + return $this; + } + + /** + * Sends the request and returns the response + * + * @throws HTTP_Request2_Exception + * @return HTTP_Request2_Response + */ + public function send() + { + // Sanity check for URL + if (!$this->url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('No URL given'); + } elseif (!$this->url->isAbsolute()) { + throw new HTTP_Request2_Exception('Absolute URL required'); + } elseif (!in_array(strtolower($this->url->getScheme()), array('https', 'http'))) { + throw new HTTP_Request2_Exception('Not a HTTP URL'); + } + if (empty($this->adapter)) { + $this->setAdapter($this->getConfig('adapter')); + } + // magic_quotes_runtime may break file uploads and chunked response + // processing; see bug #4543 + if ($magicQuotes = ini_get('magic_quotes_runtime')) { + ini_set('magic_quotes_runtime', false); + } + // force using single byte encoding if mbstring extension overloads + // strlen() and substr(); see bug #1781, bug #10605 + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + $response = $this->adapter->sendRequest($this); + } catch (Exception $e) { + } + // cleanup in either case (poor man's "finally" clause) + if ($magicQuotes) { + ini_set('magic_quotes_runtime', true); + } + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + // rethrow the exception + if (!empty($e)) { + throw $e; + } + return $response; + } + + /** + * Tries to detect MIME type of a file + * + * The method will try to use fileinfo extension if it is available, + * deprecated mime_content_type() function in the other case. If neither + * works, default 'application/octet-stream' MIME type is returned + * + * @param string filename + * @return string file MIME type + */ + protected static function detectMimeType($filename) + { + // finfo extension from PECL available + if (function_exists('finfo_open')) { + if (!isset(self::$_fileinfoDb)) { + self::$_fileinfoDb = @finfo_open(FILEINFO_MIME); + } + if (self::$_fileinfoDb) { + $info = finfo_file(self::$_fileinfoDb, $filename); + } + } + // (deprecated) mime_content_type function available + if (empty($info) && function_exists('mime_content_type')) { + return mime_content_type($filename); + } + return empty($info)? 'application/octet-stream': $info; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter.php b/extlib/HTTP/Request2/Adapter.php new file mode 100644 index 0000000000..39b092b346 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter.php @@ -0,0 +1,152 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Adapter.php 274684 2009-01-26 23:07:27Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class representing a HTTP response + */ +require_once 'HTTP/Request2/Response.php'; + +/** + * Base class for HTTP_Request2 adapters + * + * HTTP_Request2 class itself only defines methods for aggregating the request + * data, all actual work of sending the request to the remote server and + * receiving its response is performed by adapters. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +abstract class HTTP_Request2_Adapter +{ + /** + * A list of methods that MUST NOT have a request body, per RFC 2616 + * @var array + */ + protected static $bodyDisallowed = array('TRACE'); + + /** + * Methods having defined semantics for request body + * + * Content-Length header (indicating that the body follows, section 4.3 of + * RFC 2616) will be sent for these methods even if no body was added + * + * @var array + * @link http://pear.php.net/bugs/bug.php?id=12900 + * @link http://pear.php.net/bugs/bug.php?id=14740 + */ + protected static $bodyRequired = array('POST', 'PUT'); + + /** + * Request being sent + * @var HTTP_Request2 + */ + protected $request; + + /** + * Request body + * @var string|resource|HTTP_Request2_MultipartBody + * @see HTTP_Request2::getBody() + */ + protected $requestBody; + + /** + * Length of the request body + * @var integer + */ + protected $contentLength; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + abstract public function sendRequest(HTTP_Request2 $request); + + /** + * Calculates length of the request body, adds proper headers + * + * @param array associative array of request headers, this method will + * add proper 'Content-Length' and 'Content-Type' headers + * to this array (or remove them if not needed) + */ + protected function calculateRequestLength(&$headers) + { + $this->requestBody = $this->request->getBody(); + + if (is_string($this->requestBody)) { + $this->contentLength = strlen($this->requestBody); + } elseif (is_resource($this->requestBody)) { + $stat = fstat($this->requestBody); + $this->contentLength = $stat['size']; + rewind($this->requestBody); + } else { + $this->contentLength = $this->requestBody->getLength(); + $headers['content-type'] = 'multipart/form-data; boundary=' . + $this->requestBody->getBoundary(); + $this->requestBody->rewind(); + } + + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + unset($headers['content-type']); + // No body: send a Content-Length header nonetheless (request #12900), + // but do that only for methods that require a body (bug #14740) + if (in_array($this->request->getMethod(), self::$bodyRequired)) { + $headers['content-length'] = 0; + } else { + unset($headers['content-length']); + } + } else { + if (empty($headers['content-type'])) { + $headers['content-type'] = 'application/x-www-form-urlencoded'; + } + $headers['content-length'] = $this->contentLength; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Curl.php b/extlib/HTTP/Request2/Adapter/Curl.php new file mode 100644 index 0000000000..4d4de0dcc7 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Curl.php @@ -0,0 +1,383 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Curl.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Adapter for HTTP_Request2 wrapping around cURL extension + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Curl extends HTTP_Request2_Adapter +{ + /** + * Mapping of header names to cURL options + * @var array + */ + protected static $headerMap = array( + 'accept-encoding' => CURLOPT_ENCODING, + 'cookie' => CURLOPT_COOKIE, + 'referer' => CURLOPT_REFERER, + 'user-agent' => CURLOPT_USERAGENT + ); + + /** + * Mapping of SSL context options to cURL options + * @var array + */ + protected static $sslContextMap = array( + 'ssl_verify_peer' => CURLOPT_SSL_VERIFYPEER, + 'ssl_cafile' => CURLOPT_CAINFO, + 'ssl_capath' => CURLOPT_CAPATH, + 'ssl_local_cert' => CURLOPT_SSLCERT, + 'ssl_passphrase' => CURLOPT_SSLCERTPASSWD + ); + + /** + * Response being received + * @var HTTP_Request2_Response + */ + protected $response; + + /** + * Whether 'sentHeaders' event was sent to observers + * @var boolean + */ + protected $eventSentHeaders = false; + + /** + * Whether 'receivedHeaders' event was sent to observers + * @var boolean + */ + protected $eventReceivedHeaders = false; + + /** + * Position within request body + * @var integer + * @see callbackReadBody() + */ + protected $position = 0; + + /** + * Information about last transfer, as returned by curl_getinfo() + * @var array + */ + protected $lastInfo; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (!extension_loaded('curl')) { + throw new HTTP_Request2_Exception('cURL extension not available'); + } + + $this->request = $request; + $this->response = null; + $this->position = 0; + $this->eventSentHeaders = false; + $this->eventReceivedHeaders = false; + + try { + if (false === curl_exec($ch = $this->createCurlHandle())) { + $errorMessage = 'Error sending request: #' . curl_errno($ch) . + ' ' . curl_error($ch); + } + } catch (Exception $e) { + } + $this->lastInfo = curl_getinfo($ch); + curl_close($ch); + + if (!empty($e)) { + throw $e; + } elseif (!empty($errorMessage)) { + throw new HTTP_Request2_Exception($errorMessage); + } + + if (0 < $this->lastInfo['size_download']) { + $this->request->setLastEvent('receivedBody', $this->response); + } + return $this->response; + } + + /** + * Returns information about last transfer + * + * @return array associative array as returned by curl_getinfo() + */ + public function getInfo() + { + return $this->lastInfo; + } + + /** + * Creates a new cURL handle and populates it with data from the request + * + * @return resource a cURL handle, as created by curl_init() + * @throws HTTP_Request2_Exception + */ + protected function createCurlHandle() + { + $ch = curl_init(); + + curl_setopt_array($ch, array( + // setup callbacks + CURLOPT_READFUNCTION => array($this, 'callbackReadBody'), + CURLOPT_HEADERFUNCTION => array($this, 'callbackWriteHeader'), + CURLOPT_WRITEFUNCTION => array($this, 'callbackWriteBody'), + // disallow redirects + CURLOPT_FOLLOWLOCATION => false, + // buffer size + CURLOPT_BUFFERSIZE => $this->request->getConfig('buffer_size'), + // connection timeout + CURLOPT_CONNECTTIMEOUT => $this->request->getConfig('connect_timeout'), + // save full outgoing headers, in case someone is interested + CURLINFO_HEADER_OUT => true, + // request url + CURLOPT_URL => $this->request->getUrl()->getUrl() + )); + + // request timeout + if ($timeout = $this->request->getConfig('timeout')) { + curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); + } + + // set HTTP version + switch ($this->request->getConfig('protocol_version')) { + case '1.0': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); + break; + case '1.1': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); + } + + // set request method + switch ($this->request->getMethod()) { + case HTTP_Request2::METHOD_GET: + curl_setopt($ch, CURLOPT_HTTPGET, true); + break; + case HTTP_Request2::METHOD_POST: + curl_setopt($ch, CURLOPT_POST, true); + break; + default: + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $this->request->getMethod()); + } + + // set proxy, if needed + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + curl_setopt($ch, CURLOPT_PROXY, $host . ':' . $port); + if ($user = $this->request->getConfig('proxy_user')) { + curl_setopt($ch, CURLOPT_PROXYUSERPWD, $user . ':' . + $this->request->getConfig('proxy_password')); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_DIGEST); + } + } + } + + // set authentication data + if ($auth = $this->request->getAuth()) { + curl_setopt($ch, CURLOPT_USERPWD, $auth['user'] . ':' . $auth['password']); + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST); + } + } + + // set SSL options + if (0 == strcasecmp($this->request->getUrl()->getScheme(), 'https')) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_verify_host' == $name && null !== $value) { + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $value? 2: 0); + } elseif (isset(self::$sslContextMap[$name]) && null !== $value) { + curl_setopt($ch, self::$sslContextMap[$name], $value); + } + } + } + + $headers = $this->request->getHeaders(); + // make cURL automagically send proper header + if (!isset($headers['accept-encoding'])) { + $headers['accept-encoding'] = ''; + } + + // set headers having special cURL keys + foreach (self::$headerMap as $name => $option) { + if (isset($headers[$name])) { + curl_setopt($ch, $option, $headers[$name]); + unset($headers[$name]); + } + } + + $this->calculateRequestLength($headers); + + // set headers not having special keys + $headersFmt = array(); + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersFmt[] = $canonicalName . ': ' . $value; + } + curl_setopt($ch, CURLOPT_HTTPHEADER, $headersFmt); + + return $ch; + } + + /** + * Callback function called by cURL for reading the request body + * + * @param resource cURL handle + * @param resource file descriptor (not used) + * @param integer maximum length of data to return + * @return string part of the request body, up to $length bytes + */ + protected function callbackReadBody($ch, $fd, $length) + { + if (!$this->eventSentHeaders) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + $this->eventSentHeaders = true; + } + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength || $this->position >= $this->contentLength + ) { + return ''; + } + if (is_string($this->requestBody)) { + $string = substr($this->requestBody, $this->position, $length); + } elseif (is_resource($this->requestBody)) { + $string = fread($this->requestBody, $length); + } else { + $string = $this->requestBody->read($length); + } + $this->request->setLastEvent('sentBodyPart', strlen($string)); + $this->position += strlen($string); + return $string; + } + + /** + * Callback function called by cURL for saving the response headers + * + * @param resource cURL handle + * @param string response header (with trailing CRLF) + * @return integer number of bytes saved + * @see HTTP_Request2_Response::parseHeaderLine() + */ + protected function callbackWriteHeader($ch, $string) + { + // we may receive a second set of headers if doing e.g. digest auth + if ($this->eventReceivedHeaders || !$this->eventSentHeaders) { + // don't bother with 100-Continue responses (bug #15785) + if (!$this->eventSentHeaders || + $this->response->getStatus() >= 200 + ) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + } + $this->eventSentHeaders = true; + // we'll need a new response object + if ($this->eventReceivedHeaders) { + $this->eventReceivedHeaders = false; + $this->response = null; + } + } + if (empty($this->response)) { + $this->response = new HTTP_Request2_Response($string, false); + } else { + $this->response->parseHeaderLine($string); + if ('' == trim($string)) { + // don't bother with 100-Continue responses (bug #15785) + if (200 <= $this->response->getStatus()) { + $this->request->setLastEvent('receivedHeaders', $this->response); + } + $this->eventReceivedHeaders = true; + } + } + return strlen($string); + } + + /** + * Callback function called by cURL for saving the response body + * + * @param resource cURL handle (not used) + * @param string part of the response body + * @return integer number of bytes saved + * @see HTTP_Request2_Response::appendBody() + */ + protected function callbackWriteBody($ch, $string) + { + // cURL calls WRITEFUNCTION callback without calling HEADERFUNCTION if + // response doesn't start with proper HTTP status line (see bug #15716) + if (empty($this->response)) { + throw new HTTP_Request2_Exception("Malformed response: {$string}"); + } + if ($this->request->getConfig('store_body')) { + $this->response->appendBody($string); + } + $this->request->setLastEvent('receivedBodyPart', $string); + return strlen($string); + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Mock.php b/extlib/HTTP/Request2/Adapter/Mock.php new file mode 100644 index 0000000000..89688003b2 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Mock.php @@ -0,0 +1,171 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Mock.php 274406 2009-01-23 18:01:57Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Mock adapter intended for testing + * + * Can be used to test applications depending on HTTP_Request2 package without + * actually performing any HTTP requests. This adapter will return responses + * previously added via addResponse() + * + * $mock = new HTTP_Request2_Adapter_Mock(); + * $mock->addResponse("HTTP/1.1 ... "); + * + * $request = new HTTP_Request2(); + * $request->setAdapter($mock); + * + * // This will return the response set above + * $response = $req->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Mock extends HTTP_Request2_Adapter +{ + /** + * A queue of responses to be returned by sendRequest() + * @var array + */ + protected $responses = array(); + + /** + * Returns the next response from the queue built by addResponse() + * + * If the queue is empty will return default empty response with status 400, + * if an Exception object was added to the queue it will be thrown. + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (count($this->responses) > 0) { + $response = array_shift($this->responses); + if ($response instanceof HTTP_Request2_Response) { + return $response; + } else { + // rethrow the exception, + $class = get_class($response); + $message = $response->getMessage(); + $code = $response->getCode(); + throw new $class($message, $code); + } + } else { + return self::createResponseFromString("HTTP/1.1 400 Bad Request\r\n\r\n"); + } + } + + /** + * Adds response to the queue + * + * @param mixed either a string, a pointer to an open file, + * a HTTP_Request2_Response or Exception object + * @throws HTTP_Request2_Exception + */ + public function addResponse($response) + { + if (is_string($response)) { + $response = self::createResponseFromString($response); + } elseif (is_resource($response)) { + $response = self::createResponseFromFile($response); + } elseif (!$response instanceof HTTP_Request2_Response && + !$response instanceof Exception + ) { + throw new HTTP_Request2_Exception('Parameter is not a valid response'); + } + $this->responses[] = $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a string + * + * @param string + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromString($str) + { + $parts = preg_split('!(\r?\n){2}!m', $str, 2); + $headerLines = explode("\n", $parts[0]); + $response = new HTTP_Request2_Response(array_shift($headerLines)); + foreach ($headerLines as $headerLine) { + $response->parseHeaderLine($headerLine); + } + $response->parseHeaderLine(''); + if (isset($parts[1])) { + $response->appendBody($parts[1]); + } + return $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a file + * + * @param resource file pointer returned by fopen() + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromFile($fp) + { + $response = new HTTP_Request2_Response(fgets($fp)); + do { + $headerLine = fgets($fp); + $response->parseHeaderLine($headerLine); + } while ('' != trim($headerLine)); + + while (!feof($fp)) { + $response->appendBody(fread($fp, 8192)); + } + return $response; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php new file mode 100644 index 0000000000..ff44d49594 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Socket.php @@ -0,0 +1,971 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Socket-based adapter for HTTP_Request2 + * + * This adapter uses only PHP sockets and will work on almost any PHP + * environment. Code is based on original HTTP_Request PEAR package. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter +{ + /** + * Regular expression for 'token' rule from RFC 2616 + */ + const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; + + /** + * Regular expression for 'quoted-string' rule from RFC 2616 + */ + const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; + + /** + * Connected sockets, needed for Keep-Alive support + * @var array + * @see connect() + */ + protected static $sockets = array(); + + /** + * Data for digest authentication scheme + * + * The keys for the array are URL prefixes. + * + * The values are associative arrays with data (realm, nonce, nonce-count, + * opaque...) needed for digest authentication. Stored here to prevent making + * duplicate requests to digest-protected resources after we have already + * received the challenge. + * + * @var array + */ + protected static $challenges = array(); + + /** + * Connected socket + * @var resource + * @see connect() + */ + protected $socket; + + /** + * Challenge used for server digest authentication + * @var array + */ + protected $serverChallenge; + + /** + * Challenge used for proxy digest authentication + * @var array + */ + protected $proxyChallenge; + + /** + * Global timeout, exception will be raised if request continues past this time + * @var integer + */ + protected $timeout = null; + + /** + * Remaining length of the current chunk, when reading chunked response + * @var integer + * @see readChunked() + */ + protected $chunkLength = 0; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + $this->request = $request; + $keepAlive = $this->connect(); + $headers = $this->prepareHeaders(); + + // Use global request timeout if given, see feature requests #5735, #8964 + if ($timeout = $request->getConfig('timeout')) { + $this->timeout = time() + $timeout; + } else { + $this->timeout = null; + } + + try { + if (false === @fwrite($this->socket, $headers, strlen($headers))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // provide request headers to the observer, see request #7633 + $this->request->setLastEvent('sentHeaders', $headers); + $this->writeBody(); + + if ($this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $request->getConfig('timeout') . ' second(s)' + ); + } + + $response = $this->readResponse(); + + if (!$this->canKeepAlive($keepAlive, $response)) { + $this->disconnect(); + } + + if ($this->shouldUseProxyDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($this->shouldUseServerDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($authInfo = $response->getHeader('authentication-info')) { + $this->updateChallenge($this->serverChallenge, $authInfo); + } + if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { + $this->updateChallenge($this->proxyChallenge, $proxyInfo); + } + + } catch (Exception $e) { + $this->disconnect(); + throw $e; + } + + return $response; + } + + /** + * Connects to the remote server + * + * @return bool whether the connection can be persistent + * @throws HTTP_Request2_Exception + */ + protected function connect() + { + $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); + $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $headers = $this->request->getHeaders(); + $reqHost = $this->request->getUrl()->getHost(); + if (!($reqPort = $this->request->getUrl()->getPort())) { + $reqPort = $secure? 443: 80; + } + + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + $proxy = true; + } else { + $host = $reqHost; + $port = $reqPort; + $proxy = false; + } + + if ($tunnel && !$proxy) { + throw new HTTP_Request2_Exception( + "Trying to perform CONNECT request without proxy" + ); + } + if ($secure && !in_array('ssl', stream_get_transports())) { + throw new HTTP_Request2_Exception( + 'Need OpenSSL support for https:// requests' + ); + } + + // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive + // connection token to a proxy server... + if ($proxy && !$secure && + !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] + ) { + $this->request->setHeader('connection'); + } + + $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && + empty($headers['connection'])) || + (!empty($headers['connection']) && + 'Keep-Alive' == $headers['connection']); + $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; + + $options = array(); + if ($secure || $tunnel) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_' == substr($name, 0, 4) && null !== $value) { + if ('ssl_verify_host' == $name) { + if ($value) { + $options['CN_match'] = $reqHost; + } + } else { + $options[substr($name, 4)] = $value; + } + } + } + ksort($options); + } + + // Changing SSL context options after connection is established does *not* + // work, we need a new connection if options change + $remote = $host . ':' . $port; + $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . + (empty($options)? '': ':' . serialize($options)); + unset($this->socket); + + // We use persistent connections and have a connected socket? + // Ensure that the socket is still connected, see bug #16149 + if ($keepAlive && !empty(self::$sockets[$socketKey]) && + !feof(self::$sockets[$socketKey]) + ) { + $this->socket =& self::$sockets[$socketKey]; + + } elseif ($secure && $proxy && !$tunnel) { + $this->establishTunnel(); + $this->request->setLastEvent( + 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" + ); + self::$sockets[$socketKey] =& $this->socket; + + } else { + // Set SSL context options if doing HTTPS request or creating a tunnel + $context = stream_context_create(); + foreach ($options as $name => $value) { + if (!stream_context_set_option($context, 'ssl', $name, $value)) { + throw new HTTP_Request2_Exception( + "Error setting SSL context option '{$name}'" + ); + } + } + $this->socket = @stream_socket_client( + $remote, $errno, $errstr, + $this->request->getConfig('connect_timeout'), + STREAM_CLIENT_CONNECT, $context + ); + if (!$this->socket) { + throw new HTTP_Request2_Exception( + "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" + ); + } + $this->request->setLastEvent('connect', $remote); + self::$sockets[$socketKey] =& $this->socket; + } + return $keepAlive; + } + + /** + * Establishes a tunnel to a secure remote server via HTTP CONNECT request + * + * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP + * sees that we are connected to a proxy server (duh!) rather than the server + * that presents its certificate. + * + * @link http://tools.ietf.org/html/rfc2817#section-5.2 + * @throws HTTP_Request2_Exception + */ + protected function establishTunnel() + { + $donor = new self; + $connect = new HTTP_Request2( + $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, + array_merge($this->request->getConfig(), + array('adapter' => $donor)) + ); + $response = $connect->send(); + // Need any successful (2XX) response + if (200 > $response->getStatus() || 300 <= $response->getStatus()) { + throw new HTTP_Request2_Exception( + 'Failed to connect via HTTPS proxy. Proxy response: ' . + $response->getStatus() . ' ' . $response->getReasonPhrase() + ); + } + $this->socket = $donor->socket; + + $modes = array( + STREAM_CRYPTO_METHOD_TLS_CLIENT, + STREAM_CRYPTO_METHOD_SSLv3_CLIENT, + STREAM_CRYPTO_METHOD_SSLv23_CLIENT, + STREAM_CRYPTO_METHOD_SSLv2_CLIENT + ); + + foreach ($modes as $mode) { + if (stream_socket_enable_crypto($this->socket, true, $mode)) { + return; + } + } + throw new HTTP_Request2_Exception( + 'Failed to enable secure connection when connecting through proxy' + ); + } + + /** + * Checks whether current connection may be reused or should be closed + * + * @param boolean whether connection could be persistent + * in the first place + * @param HTTP_Request2_Response response object to check + * @return boolean + */ + protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) + { + // Do not close socket on successful CONNECT request + if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus() + ) { + return true; + } + + $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || + null !== $response->getHeader('content-length'); + $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || + (null === $response->getHeader('connection') && + '1.1' == $response->getVersion()); + return $requestKeepAlive && $lengthKnown && $persistent; + } + + /** + * Disconnects from the remote server + */ + protected function disconnect() + { + if (is_resource($this->socket)) { + fclose($this->socket); + $this->socket = null; + $this->request->setLastEvent('disconnect'); + } + } + + /** + * Checks whether another request should be performed with server digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 401 + * - auth credentials should be set in the request object + * - response should contain WWW-Authenticate header with digest challenge + * - there is either no challenge stored for this URL or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) + { + // no sense repeating a request if we don't have credentials + if (401 != $response->getStatus() || !$this->request->getAuth()) { + return false; + } + if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { + return false; + } + + $url = $this->request->getUrl(); + $scheme = $url->getScheme(); + $host = $scheme . '://' . $url->getHost(); + if ($port = $url->getPort()) { + if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || + (0 == strcasecmp($scheme, 'https') && 443 != $port) + ) { + $host .= ':' . $port; + } + } + + if (!empty($challenge['domain'])) { + $prefixes = array(); + foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { + // don't bother with different servers + if ('/' == substr($prefix, 0, 1)) { + $prefixes[] = $host . $prefix; + } + } + } + if (empty($prefixes)) { + $prefixes = array($host . '/'); + } + + $ret = true; + foreach ($prefixes as $prefix) { + if (!empty(self::$challenges[$prefix]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + // probably credentials are invalid + $ret = false; + } + self::$challenges[$prefix] =& $challenge; + } + return $ret; + } + + /** + * Checks whether another request should be performed with proxy digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 407 + * - proxy auth credentials should be set in the request object + * - response should contain Proxy-Authenticate header with digest challenge + * - there is either no challenge stored for this proxy or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) + { + if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { + return false; + } + if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { + return false; + } + + $key = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + + if (!empty(self::$challenges[$key]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + $ret = false; + } else { + $ret = true; + } + self::$challenges[$key] = $challenge; + return $ret; + } + + /** + * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value + * + * There is a problem with implementation of RFC 2617: several of the parameters + * here are defined as quoted-string and thus may contain backslash escaped + * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as + * just value of quoted-string X without surrounding quotes, it doesn't speak + * about removing backslash escaping. + * + * Now realm parameter is user-defined and human-readable, strange things + * happen when it contains quotes: + * - Apache allows quotes in realm, but apparently uses realm value without + * backslashes for digest computation + * - Squid allows (manually escaped) quotes there, but it is impossible to + * authorize with either escaped or unescaped quotes used in digest, + * probably it can't parse the response (?) + * - Both IE and Firefox display realm value with backslashes in + * the password popup and apparently use the same value for digest + * + * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in + * quoted-string handling, unfortunately that means failure to authorize + * sometimes + * + * @param string value of WWW-Authenticate or Proxy-Authenticate header + * @return mixed associative array with challenge parameters, false if + * no challenge is present in header value + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function parseDigestChallenge($headerValue) + { + $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; + $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; + if (!preg_match($challenge, $headerValue, $matches)) { + return false; + } + + preg_match_all('!' . $authParam . '!', $matches[0], $params); + $paramsAry = array(); + $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', + 'algorithm', 'qop'); + for ($i = 0; $i < count($params[0]); $i++) { + // section 3.2.1: Any unrecognized directive MUST be ignored. + if (in_array($params[1][$i], $knownParams)) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + } + // we only support qop=auth + if (!empty($paramsAry['qop']) && + !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) + ) { + throw new HTTP_Request2_Exception( + "Only 'auth' qop is currently supported in digest authentication, " . + "server requested '{$paramsAry['qop']}'" + ); + } + // we only support algorithm=MD5 + if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { + throw new HTTP_Request2_Exception( + "Only 'MD5' algorithm is currently supported in digest authentication, " . + "server requested '{$paramsAry['algorithm']}'" + ); + } + + return $paramsAry; + } + + /** + * Parses [Proxy-]Authentication-Info header value and updates challenge + * + * @param array challenge to update + * @param string value of [Proxy-]Authentication-Info header + * @todo validate server rspauth response + */ + protected function updateChallenge(&$challenge, $headerValue) + { + $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; + $paramsAry = array(); + + preg_match_all($authParam, $headerValue, $params); + for ($i = 0; $i < count($params[0]); $i++) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + // for now, just update the nonce value + if (!empty($paramsAry['nextnonce'])) { + $challenge['nonce'] = $paramsAry['nextnonce']; + $challenge['nc'] = 1; + } + } + + /** + * Creates a value for [Proxy-]Authorization header when using digest authentication + * + * @param string user name + * @param string password + * @param string request URL + * @param array digest challenge parameters + * @return string value of [Proxy-]Authorization request header + * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 + */ + protected function createDigestResponse($user, $password, $url, &$challenge) + { + if (false !== ($q = strpos($url, '?')) && + $this->request->getConfig('digest_compat_ie') + ) { + $url = substr($url, 0, $q); + } + + $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); + $a2 = md5($this->request->getMethod() . ':' . $url); + + if (empty($challenge['qop'])) { + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); + } else { + $challenge['cnonce'] = 'Req2.' . rand(); + if (empty($challenge['nc'])) { + $challenge['nc'] = 1; + } + $nc = sprintf('%08x', $challenge['nc']++); + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . + $challenge['cnonce'] . ':auth:' . $a2); + } + return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . + 'realm="' . $challenge['realm'] . '", ' . + 'nonce="' . $challenge['nonce'] . '", ' . + 'uri="' . $url . '", ' . + 'response="' . $digest . '"' . + (!empty($challenge['opaque'])? + ', opaque="' . $challenge['opaque'] . '"': + '') . + (!empty($challenge['qop'])? + ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': + ''); + } + + /** + * Adds 'Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request host (needed for digest authentication) + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) + { + if (!($auth = $this->request->getAuth())) { + return; + } + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + $headers['authorization'] = + 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->serverChallenge); + $fullUrl = ('/' == $requestUrl[0])? + $this->request->getUrl()->getScheme() . '://' . + $requestHost . $requestUrl: + $requestUrl; + foreach (array_keys(self::$challenges) as $key) { + if ($key == substr($fullUrl, 0, strlen($key))) { + $headers['authorization'] = $this->createDigestResponse( + $auth['user'], $auth['password'], + $requestUrl, self::$challenges[$key] + ); + $this->serverChallenge =& self::$challenges[$key]; + break; + } + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '{$auth['scheme']}'" + ); + } + } + + /** + * Adds 'Proxy-Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addProxyAuthorizationHeader(&$headers, $requestUrl) + { + if (!$this->request->getConfig('proxy_host') || + !($user = $this->request->getConfig('proxy_user')) || + (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && + HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) + ) { + return; + } + + $password = $this->request->getConfig('proxy_password'); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + $headers['proxy-authorization'] = + 'Basic ' . base64_encode($user . ':' . $password); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->proxyChallenge); + $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + if (!empty(self::$challenges[$proxyUrl])) { + $headers['proxy-authorization'] = $this->createDigestResponse( + $user, $password, + $requestUrl, self::$challenges[$proxyUrl] + ); + $this->proxyChallenge =& self::$challenges[$proxyUrl]; + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '" . + $this->request->getConfig('proxy_auth_scheme') . "'" + ); + } + } + + + /** + * Creates the string with the Request-Line and request headers + * + * @return string + * @throws HTTP_Request2_Exception + */ + protected function prepareHeaders() + { + $headers = $this->request->getHeaders(); + $url = $this->request->getUrl(); + $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $host = $url->getHost(); + + $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; + if (($port = $url->getPort()) && $port != $defaultPort || $connect) { + $host .= ':' . (empty($port)? $defaultPort: $port); + } + // Do not overwrite explicitly set 'Host' header, see bug #16146 + if (!isset($headers['host'])) { + $headers['host'] = $host; + } + + if ($connect) { + $requestUrl = $host; + + } else { + if (!$this->request->getConfig('proxy_host') || + 0 == strcasecmp($url->getScheme(), 'https') + ) { + $requestUrl = ''; + } else { + $requestUrl = $url->getScheme() . '://' . $host; + } + $path = $url->getPath(); + $query = $url->getQuery(); + $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); + } + + if ('1.1' == $this->request->getConfig('protocol_version') && + extension_loaded('zlib') && !isset($headers['accept-encoding']) + ) { + $headers['accept-encoding'] = 'gzip, deflate'; + } + + $this->addAuthorizationHeader($headers, $host, $requestUrl); + $this->addProxyAuthorizationHeader($headers, $requestUrl); + $this->calculateRequestLength($headers); + + $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . + $this->request->getConfig('protocol_version') . "\r\n"; + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersStr .= $canonicalName . ': ' . $value . "\r\n"; + } + return $headersStr . "\r\n"; + } + + /** + * Sends the request body + * + * @throws HTTP_Request2_Exception + */ + protected function writeBody() + { + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + return; + } + + $position = 0; + $bufferSize = $this->request->getConfig('buffer_size'); + while ($position < $this->contentLength) { + if (is_string($this->requestBody)) { + $str = substr($this->requestBody, $position, $bufferSize); + } elseif (is_resource($this->requestBody)) { + $str = fread($this->requestBody, $bufferSize); + } else { + $str = $this->requestBody->read($bufferSize); + } + if (false === @fwrite($this->socket, $str, strlen($str))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // Provide the length of written string to the observer, request #7630 + $this->request->setLastEvent('sentBodyPart', strlen($str)); + $position += strlen($str); + } + } + + /** + * Reads the remote server's response + * + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + protected function readResponse() + { + $bufferSize = $this->request->getConfig('buffer_size'); + + do { + $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); + do { + $headerLine = $this->readLine($bufferSize); + $response->parseHeaderLine($headerLine); + } while ('' != $headerLine); + } while (in_array($response->getStatus(), array(100, 101))); + + $this->request->setLastEvent('receivedHeaders', $response); + + // No body possible in such responses + if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || + (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus()) || + in_array($response->getStatus(), array(204, 304)) + ) { + return $response; + } + + $chunked = 'chunked' == $response->getHeader('transfer-encoding'); + $length = $response->getHeader('content-length'); + $hasBody = false; + if ($chunked || null === $length || 0 < intval($length)) { + // RFC 2616, section 4.4: + // 3. ... If a message is received with both a + // Transfer-Encoding header field and a Content-Length header field, + // the latter MUST be ignored. + $toRead = ($chunked || null === $length)? null: $length; + $this->chunkLength = 0; + + while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { + if ($chunked) { + $data = $this->readChunked($bufferSize); + } elseif (is_null($toRead)) { + $data = $this->fread($bufferSize); + } else { + $data = $this->fread(min($toRead, $bufferSize)); + $toRead -= strlen($data); + } + if ('' == $data && (!$this->chunkLength || feof($this->socket))) { + break; + } + + $hasBody = true; + if ($this->request->getConfig('store_body')) { + $response->appendBody($data); + } + if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { + $this->request->setLastEvent('receivedEncodedBodyPart', $data); + } else { + $this->request->setLastEvent('receivedBodyPart', $data); + } + } + } + + if ($hasBody) { + $this->request->setLastEvent('receivedBody', $response); + } + return $response; + } + + /** + * Reads until either the end of the socket or a newline, whichever comes first + * + * Strips the trailing newline from the returned data, handles global + * request timeout. Method idea borrowed from Net_Socket PEAR package. + * + * @param int buffer size to use for reading + * @return Available data up to the newline (not including newline) + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function readLine($bufferSize) + { + $line = ''; + while (!feof($this->socket)) { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $line .= @fgets($this->socket, $bufferSize); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + if (substr($line, -1) == "\n") { + return rtrim($line, "\r\n"); + } + } + return $line; + } + + /** + * Wrapper around fread(), handles global request timeout + * + * @param int Reads up to this number of bytes + * @return Data read from socket + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function fread($length) + { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $data = fread($this->socket, $length); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + return $data; + } + + /** + * Reads a part of response body encoded with chunked Transfer-Encoding + * + * @param int buffer size to use for reading + * @return string + * @throws HTTP_Request2_Exception + */ + protected function readChunked($bufferSize) + { + // at start of the next chunk? + if (0 == $this->chunkLength) { + $line = $this->readLine($bufferSize); + if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { + throw new HTTP_Request2_Exception( + "Cannot decode chunked response, invalid chunk length '{$line}'" + ); + } else { + $this->chunkLength = hexdec($matches[1]); + // Chunk with zero length indicates the end + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); + return ''; + } + } + } + $data = $this->fread(min($this->chunkLength, $bufferSize)); + $this->chunkLength -= strlen($data); + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); // Trailing CRLF + } + return $data; + } +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Exception.php b/extlib/HTTP/Request2/Exception.php new file mode 100644 index 0000000000..bfef7d6c22 --- /dev/null +++ b/extlib/HTTP/Request2/Exception.php @@ -0,0 +1,62 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Exception.php 273003 2009-01-07 19:28:22Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for exceptions in PEAR + */ +require_once 'PEAR/Exception.php'; + +/** + * Exception class for HTTP_Request2 package + * + * Such a class is required by the Exception RFC: + * http://pear.php.net/pepr/pepr-proposal-show.php?id=132 + * + * @category HTTP + * @package HTTP_Request2 + * @version Release: 0.4.1 + */ +class HTTP_Request2_Exception extends PEAR_Exception +{ +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/MultipartBody.php b/extlib/HTTP/Request2/MultipartBody.php new file mode 100644 index 0000000000..d8afd8344c --- /dev/null +++ b/extlib/HTTP/Request2/MultipartBody.php @@ -0,0 +1,274 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: MultipartBody.php 287306 2009-08-14 15:22:52Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class for building multipart/form-data request body + * + * The class helps to reduce memory consumption by streaming large file uploads + * from disk, it also allows monitoring of upload progress (see request #7630) + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc1867 + */ +class HTTP_Request2_MultipartBody +{ + /** + * MIME boundary + * @var string + */ + private $_boundary; + + /** + * Form parameters added via {@link HTTP_Request2::addPostParameter()} + * @var array + */ + private $_params = array(); + + /** + * File uploads added via {@link HTTP_Request2::addUpload()} + * @var array + */ + private $_uploads = array(); + + /** + * Header for parts with parameters + * @var string + */ + private $_headerParam = "--%s\r\nContent-Disposition: form-data; name=\"%s\"\r\n\r\n"; + + /** + * Header for parts with uploads + * @var string + */ + private $_headerUpload = "--%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%s\"\r\nContent-Type: %s\r\n\r\n"; + + /** + * Current position in parameter and upload arrays + * + * First number is index of "current" part, second number is position within + * "current" part + * + * @var array + */ + private $_pos = array(0, 0); + + + /** + * Constructor. Sets the arrays with POST data. + * + * @param array values of form fields set via {@link HTTP_Request2::addPostParameter()} + * @param array file uploads set via {@link HTTP_Request2::addUpload()} + * @param bool whether to append brackets to array variable names + */ + public function __construct(array $params, array $uploads, $useBrackets = true) + { + $this->_params = self::_flattenArray('', $params, $useBrackets); + foreach ($uploads as $fieldName => $f) { + if (!is_array($f['fp'])) { + $this->_uploads[] = $f + array('name' => $fieldName); + } else { + for ($i = 0; $i < count($f['fp']); $i++) { + $upload = array( + 'name' => ($useBrackets? $fieldName . '[' . $i . ']': $fieldName) + ); + foreach (array('fp', 'filename', 'size', 'type') as $key) { + $upload[$key] = $f[$key][$i]; + } + $this->_uploads[] = $upload; + } + } + } + } + + /** + * Returns the length of the body to use in Content-Length header + * + * @return integer + */ + public function getLength() + { + $boundaryLength = strlen($this->getBoundary()); + $headerParamLength = strlen($this->_headerParam) - 4 + $boundaryLength; + $headerUploadLength = strlen($this->_headerUpload) - 8 + $boundaryLength; + $length = $boundaryLength + 6; + foreach ($this->_params as $p) { + $length += $headerParamLength + strlen($p[0]) + strlen($p[1]) + 2; + } + foreach ($this->_uploads as $u) { + $length += $headerUploadLength + strlen($u['name']) + strlen($u['type']) + + strlen($u['filename']) + $u['size'] + 2; + } + return $length; + } + + /** + * Returns the boundary to use in Content-Type header + * + * @return string + */ + public function getBoundary() + { + if (empty($this->_boundary)) { + $this->_boundary = '--' . md5('PEAR-HTTP_Request2-' . microtime()); + } + return $this->_boundary; + } + + /** + * Returns next chunk of request body + * + * @param integer Amount of bytes to read + * @return string Up to $length bytes of data, empty string if at end + */ + public function read($length) + { + $ret = ''; + $boundary = $this->getBoundary(); + $paramCount = count($this->_params); + $uploadCount = count($this->_uploads); + while ($length > 0 && $this->_pos[0] <= $paramCount + $uploadCount) { + $oldLength = $length; + if ($this->_pos[0] < $paramCount) { + $param = sprintf($this->_headerParam, $boundary, + $this->_params[$this->_pos[0]][0]) . + $this->_params[$this->_pos[0]][1] . "\r\n"; + $ret .= substr($param, $this->_pos[1], $length); + $length -= min(strlen($param) - $this->_pos[1], $length); + + } elseif ($this->_pos[0] < $paramCount + $uploadCount) { + $pos = $this->_pos[0] - $paramCount; + $header = sprintf($this->_headerUpload, $boundary, + $this->_uploads[$pos]['name'], + $this->_uploads[$pos]['filename'], + $this->_uploads[$pos]['type']); + if ($this->_pos[1] < strlen($header)) { + $ret .= substr($header, $this->_pos[1], $length); + $length -= min(strlen($header) - $this->_pos[1], $length); + } + $filePos = max(0, $this->_pos[1] - strlen($header)); + if ($length > 0 && $filePos < $this->_uploads[$pos]['size']) { + $ret .= fread($this->_uploads[$pos]['fp'], $length); + $length -= min($length, $this->_uploads[$pos]['size'] - $filePos); + } + if ($length > 0) { + $start = $this->_pos[1] + ($oldLength - $length) - + strlen($header) - $this->_uploads[$pos]['size']; + $ret .= substr("\r\n", $start, $length); + $length -= min(2 - $start, $length); + } + + } else { + $closing = '--' . $boundary . "--\r\n"; + $ret .= substr($closing, $this->_pos[1], $length); + $length -= min(strlen($closing) - $this->_pos[1], $length); + } + if ($length > 0) { + $this->_pos = array($this->_pos[0] + 1, 0); + } else { + $this->_pos[1] += $oldLength; + } + } + return $ret; + } + + /** + * Sets the current position to the start of the body + * + * This allows reusing the same body in another request + */ + public function rewind() + { + $this->_pos = array(0, 0); + foreach ($this->_uploads as $u) { + rewind($u['fp']); + } + } + + /** + * Returns the body as string + * + * Note that it reads all file uploads into memory so it is a good idea not + * to use this method with large file uploads and rely on read() instead. + * + * @return string + */ + public function __toString() + { + $this->rewind(); + return $this->read($this->getLength()); + } + + + /** + * Helper function to change the (probably multidimensional) associative array + * into the simple one. + * + * @param string name for item + * @param mixed item's values + * @param bool whether to append [] to array variables' names + * @return array array with the following items: array('item name', 'item value'); + */ + private static function _flattenArray($name, $values, $useBrackets) + { + if (!is_array($values)) { + return array(array($name, $values)); + } else { + $ret = array(); + foreach ($values as $k => $v) { + if (empty($name)) { + $newName = $k; + } elseif ($useBrackets) { + $newName = $name . '[' . $k . ']'; + } else { + $newName = $name; + } + $ret = array_merge($ret, self::_flattenArray($newName, $v, $useBrackets)); + } + return $ret; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Observer/Log.php b/extlib/HTTP/Request2/Observer/Log.php new file mode 100644 index 0000000000..b1a0552780 --- /dev/null +++ b/extlib/HTTP/Request2/Observer/Log.php @@ -0,0 +1,215 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Log.php 272593 2009-01-02 16:27:14Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * A debug observer useful for debugging / testing. + * + * This observer logs to a log target data corresponding to the various request + * and response events, it logs by default to php://output but can be configured + * to log to a file or via the PEAR Log package. + * + * A simple example: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * $observer = new HTTP_Request2_Observer_Log(); + * $request->attach($observer); + * $request->send(); + * + * + * A more complex example with PEAR Log: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * require_once 'Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * // we want to log with PEAR log + * $observer = new HTTP_Request2_Observer_Log(Log::factory('console')); + * + * // we only want to log received headers + * $observer->events = array('receivedHeaders'); + * + * $request->attach($observer); + * $request->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version Release: 0.4.1 + * @link http://pear.php.net/package/HTTP_Request2 + */ +class HTTP_Request2_Observer_Log implements SplObserver +{ + // properties {{{ + + /** + * The log target, it can be a a resource or a PEAR Log instance. + * + * @var resource|Log $target + */ + protected $target = null; + + /** + * The events to log. + * + * @var array $events + */ + public $events = array( + 'connect', + 'sentHeaders', + 'sentBodyPart', + 'receivedHeaders', + 'receivedBody', + 'disconnect', + ); + + // }}} + // __construct() {{{ + + /** + * Constructor. + * + * @param mixed $target Can be a file path (default: php://output), a resource, + * or an instance of the PEAR Log class. + * @param array $events Array of events to listen to (default: all events) + * + * @return void + */ + public function __construct($target = 'php://output', array $events = array()) + { + if (!empty($events)) { + $this->events = $events; + } + if (is_resource($target) || $target instanceof Log) { + $this->target = $target; + } elseif (false === ($this->target = @fopen($target, 'w'))) { + throw new HTTP_Request2_Exception("Unable to open '{$target}'"); + } + } + + // }}} + // update() {{{ + + /** + * Called when the request notify us of an event. + * + * @param HTTP_Request2 $subject The HTTP_Request2 instance + * + * @return void + */ + public function update(SplSubject $subject) + { + $event = $subject->getLastEvent(); + if (!in_array($event['name'], $this->events)) { + return; + } + + switch ($event['name']) { + case 'connect': + $this->log('* Connected to ' . $event['data']); + break; + case 'sentHeaders': + $headers = explode("\r\n", $event['data']); + array_pop($headers); + foreach ($headers as $header) { + $this->log('> ' . $header); + } + break; + case 'sentBodyPart': + $this->log('> ' . $event['data']); + break; + case 'receivedHeaders': + $this->log(sprintf('< HTTP/%s %s %s', + $event['data']->getVersion(), + $event['data']->getStatus(), + $event['data']->getReasonPhrase())); + $headers = $event['data']->getHeader(); + foreach ($headers as $key => $val) { + $this->log('< ' . $key . ': ' . $val); + } + $this->log('< '); + break; + case 'receivedBody': + $this->log($event['data']->getBody()); + break; + case 'disconnect': + $this->log('* Disconnected'); + break; + } + } + + // }}} + // log() {{{ + + /** + * Log the given message to the configured target. + * + * @param string $message Message to display + * + * @return void + */ + protected function log($message) + { + if ($this->target instanceof Log) { + $this->target->debug($message); + } elseif (is_resource($this->target)) { + fwrite($this->target, $message . "\r\n"); + } + } + + // }}} +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Response.php b/extlib/HTTP/Request2/Response.php new file mode 100644 index 0000000000..c7c1021fbb --- /dev/null +++ b/extlib/HTTP/Request2/Response.php @@ -0,0 +1,549 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Response.php 287948 2009-09-01 17:12:18Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP response + * + * The class is designed to be used in "streaming" scenario, building the + * response as it is being received: + * + * $statusLine = read_status_line(); + * $response = new HTTP_Request2_Response($statusLine); + * do { + * $headerLine = read_header_line(); + * $response->parseHeaderLine($headerLine); + * } while ($headerLine != ''); + * + * while ($chunk = read_body()) { + * $response->appendBody($chunk); + * } + * + * var_dump($response->getHeader(), $response->getCookies(), $response->getBody()); + * + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-6 + */ +class HTTP_Request2_Response +{ + /** + * HTTP protocol version (e.g. 1.0, 1.1) + * @var string + */ + protected $version; + + /** + * Status code + * @var integer + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $code; + + /** + * Reason phrase + * @var string + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $reasonPhrase; + + /** + * Associative array of response headers + * @var array + */ + protected $headers = array(); + + /** + * Cookies set in the response + * @var array + */ + protected $cookies = array(); + + /** + * Name of last header processed by parseHederLine() + * + * Used to handle the headers that span multiple lines + * + * @var string + */ + protected $lastHeader = null; + + /** + * Response body + * @var string + */ + protected $body = ''; + + /** + * Whether the body is still encoded by Content-Encoding + * + * cURL provides the decoded body to the callback; if we are reading from + * socket the body is still gzipped / deflated + * + * @var bool + */ + protected $bodyEncoded; + + /** + * Associative array of HTTP status code / reason phrase. + * + * @var array + * @link http://tools.ietf.org/html/rfc2616#section-10 + */ + protected static $phrases = array( + + // 1xx: Informational - Request received, continuing process + 100 => 'Continue', + 101 => 'Switching Protocols', + + // 2xx: Success - The action was successfully received, understood and + // accepted + 200 => 'OK', + 201 => 'Created', + 202 => 'Accepted', + 203 => 'Non-Authoritative Information', + 204 => 'No Content', + 205 => 'Reset Content', + 206 => 'Partial Content', + + // 3xx: Redirection - Further action must be taken in order to complete + // the request + 300 => 'Multiple Choices', + 301 => 'Moved Permanently', + 302 => 'Found', // 1.1 + 303 => 'See Other', + 304 => 'Not Modified', + 305 => 'Use Proxy', + 307 => 'Temporary Redirect', + + // 4xx: Client Error - The request contains bad syntax or cannot be + // fulfilled + 400 => 'Bad Request', + 401 => 'Unauthorized', + 402 => 'Payment Required', + 403 => 'Forbidden', + 404 => 'Not Found', + 405 => 'Method Not Allowed', + 406 => 'Not Acceptable', + 407 => 'Proxy Authentication Required', + 408 => 'Request Timeout', + 409 => 'Conflict', + 410 => 'Gone', + 411 => 'Length Required', + 412 => 'Precondition Failed', + 413 => 'Request Entity Too Large', + 414 => 'Request-URI Too Long', + 415 => 'Unsupported Media Type', + 416 => 'Requested Range Not Satisfiable', + 417 => 'Expectation Failed', + + // 5xx: Server Error - The server failed to fulfill an apparently + // valid request + 500 => 'Internal Server Error', + 501 => 'Not Implemented', + 502 => 'Bad Gateway', + 503 => 'Service Unavailable', + 504 => 'Gateway Timeout', + 505 => 'HTTP Version Not Supported', + 509 => 'Bandwidth Limit Exceeded', + + ); + + /** + * Constructor, parses the response status line + * + * @param string Response status line (e.g. "HTTP/1.1 200 OK") + * @param bool Whether body is still encoded by Content-Encoding + * @throws HTTP_Request2_Exception if status line is invalid according to spec + */ + public function __construct($statusLine, $bodyEncoded = true) + { + if (!preg_match('!^HTTP/(\d\.\d) (\d{3})(?: (.+))?!', $statusLine, $m)) { + throw new HTTP_Request2_Exception("Malformed response: {$statusLine}"); + } + $this->version = $m[1]; + $this->code = intval($m[2]); + if (!empty($m[3])) { + $this->reasonPhrase = trim($m[3]); + } elseif (!empty(self::$phrases[$this->code])) { + $this->reasonPhrase = self::$phrases[$this->code]; + } + $this->bodyEncoded = (bool)$bodyEncoded; + } + + /** + * Parses the line from HTTP response filling $headers array + * + * The method should be called after reading the line from socket or receiving + * it into cURL callback. Passing an empty string here indicates the end of + * response headers and triggers additional processing, so be sure to pass an + * empty string in the end. + * + * @param string Line from HTTP response + */ + public function parseHeaderLine($headerLine) + { + $headerLine = trim($headerLine, "\r\n"); + + // empty string signals the end of headers, process the received ones + if ('' == $headerLine) { + if (!empty($this->headers['set-cookie'])) { + $cookies = is_array($this->headers['set-cookie'])? + $this->headers['set-cookie']: + array($this->headers['set-cookie']); + foreach ($cookies as $cookieString) { + $this->parseCookie($cookieString); + } + unset($this->headers['set-cookie']); + } + foreach (array_keys($this->headers) as $k) { + if (is_array($this->headers[$k])) { + $this->headers[$k] = implode(', ', $this->headers[$k]); + } + } + + // string of the form header-name: header value + } elseif (preg_match('!^([^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+):(.+)$!', $headerLine, $m)) { + $name = strtolower($m[1]); + $value = trim($m[2]); + if (empty($this->headers[$name])) { + $this->headers[$name] = $value; + } else { + if (!is_array($this->headers[$name])) { + $this->headers[$name] = array($this->headers[$name]); + } + $this->headers[$name][] = $value; + } + $this->lastHeader = $name; + + // string + } elseif (preg_match('!^\s+(.+)$!', $headerLine, $m) && $this->lastHeader) { + if (!is_array($this->headers[$this->lastHeader])) { + $this->headers[$this->lastHeader] .= ' ' . trim($m[1]); + } else { + $key = count($this->headers[$this->lastHeader]) - 1; + $this->headers[$this->lastHeader][$key] .= ' ' . trim($m[1]); + } + } + } + + /** + * Parses a Set-Cookie header to fill $cookies array + * + * @param string value of Set-Cookie header + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + protected function parseCookie($cookieString) + { + $cookie = array( + 'expires' => null, + 'domain' => null, + 'path' => null, + 'secure' => false + ); + + // Only a name=value pair + if (!strpos($cookieString, ';')) { + $pos = strpos($cookieString, '='); + $cookie['name'] = trim(substr($cookieString, 0, $pos)); + $cookie['value'] = trim(substr($cookieString, $pos + 1)); + + // Some optional parameters are supplied + } else { + $elements = explode(';', $cookieString); + $pos = strpos($elements[0], '='); + $cookie['name'] = trim(substr($elements[0], 0, $pos)); + $cookie['value'] = trim(substr($elements[0], $pos + 1)); + + for ($i = 1; $i < count($elements); $i++) { + if (false === strpos($elements[$i], '=')) { + $elName = trim($elements[$i]); + $elValue = null; + } else { + list ($elName, $elValue) = array_map('trim', explode('=', $elements[$i])); + } + $elName = strtolower($elName); + if ('secure' == $elName) { + $cookie['secure'] = true; + } elseif ('expires' == $elName) { + $cookie['expires'] = str_replace('"', '', $elValue); + } elseif ('path' == $elName || 'domain' == $elName) { + $cookie[$elName] = urldecode($elValue); + } else { + $cookie[$elName] = $elValue; + } + } + } + $this->cookies[] = $cookie; + } + + /** + * Appends a string to the response body + * @param string + */ + public function appendBody($bodyChunk) + { + $this->body .= $bodyChunk; + } + + /** + * Returns the status code + * @return integer + */ + public function getStatus() + { + return $this->code; + } + + /** + * Returns the reason phrase + * @return string + */ + public function getReasonPhrase() + { + return $this->reasonPhrase; + } + + /** + * Returns either the named header or all response headers + * + * @param string Name of header to return + * @return string|array Value of $headerName header (null if header is + * not present), array of all response headers if + * $headerName is null + */ + public function getHeader($headerName = null) + { + if (null === $headerName) { + return $this->headers; + } else { + $headerName = strtolower($headerName); + return isset($this->headers[$headerName])? $this->headers[$headerName]: null; + } + } + + /** + * Returns cookies set in response + * + * @return array + */ + public function getCookies() + { + return $this->cookies; + } + + /** + * Returns the body of the response + * + * @return string + * @throws HTTP_Request2_Exception if body cannot be decoded + */ + public function getBody() + { + if (!$this->bodyEncoded || + !in_array(strtolower($this->getHeader('content-encoding')), array('gzip', 'deflate')) + ) { + return $this->body; + + } else { + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + switch (strtolower($this->getHeader('content-encoding'))) { + case 'gzip': + $decoded = self::decodeGzip($this->body); + break; + case 'deflate': + $decoded = self::decodeDeflate($this->body); + } + } catch (Exception $e) { + } + + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + if (!empty($e)) { + throw $e; + } + return $decoded; + } + } + + /** + * Get the HTTP version of the response + * + * @return string + */ + public function getVersion() + { + return $this->version; + } + + /** + * Decodes the message-body encoded by gzip + * + * The real decoding work is done by gzinflate() built-in function, this + * method only parses the header and checks data for compliance with + * RFC 1952 + * + * @param string gzip-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + * @link http://tools.ietf.org/html/rfc1952 + */ + public static function decodeGzip($data) + { + $length = strlen($data); + // If it doesn't look like gzip-encoded data, don't bother + if (18 > $length || strcmp(substr($data, 0, 2), "\x1f\x8b")) { + return $data; + } + if (!function_exists('gzinflate')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + $method = ord(substr($data, 2, 1)); + if (8 != $method) { + throw new HTTP_Request2_Exception('Error parsing gzip header: unknown compression method'); + } + $flags = ord(substr($data, 3, 1)); + if ($flags & 224) { + throw new HTTP_Request2_Exception('Error parsing gzip header: reserved bits are set'); + } + + // header is 10 bytes minimum. may be longer, though. + $headerLength = 10; + // extra fields, need to skip 'em + if ($flags & 4) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $extraLength = unpack('v', substr($data, 10, 2)); + if ($length - $headerLength - 2 - $extraLength[1] < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $extraLength[1] + 2; + } + // file name, need to skip that + if ($flags & 8) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $filenameLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $filenameLength || $length - $headerLength - $filenameLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $filenameLength + 1; + } + // comment, need to skip that also + if ($flags & 16) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $commentLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $commentLength || $length - $headerLength - $commentLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $commentLength + 1; + } + // have a CRC for header. let's check + if ($flags & 2) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $crcReal = 0xffff & crc32(substr($data, 0, $headerLength)); + $crcStored = unpack('v', substr($data, $headerLength, 2)); + if ($crcReal != $crcStored[1]) { + throw new HTTP_Request2_Exception('Header CRC check failed'); + } + $headerLength += 2; + } + // unpacked data CRC and size at the end of encoded data + $tmp = unpack('V2', substr($data, -8)); + $dataCrc = $tmp[1]; + $dataSize = $tmp[2]; + + // finally, call the gzinflate() function + // don't pass $dataSize to gzinflate, see bugs #13135, #14370 + $unpacked = gzinflate(substr($data, $headerLength, -8)); + if (false === $unpacked) { + throw new HTTP_Request2_Exception('gzinflate() call failed'); + } elseif ($dataSize != strlen($unpacked)) { + throw new HTTP_Request2_Exception('Data size check failed'); + } elseif ((0xffffffff & $dataCrc) != (0xffffffff & crc32($unpacked))) { + throw new HTTP_Request2_Exception('Data CRC check failed'); + } + return $unpacked; + } + + /** + * Decodes the message-body encoded by deflate + * + * @param string deflate-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + */ + public static function decodeDeflate($data) + { + if (!function_exists('gzuncompress')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + // RFC 2616 defines 'deflate' encoding as zlib format from RFC 1950, + // while many applications send raw deflate stream from RFC 1951. + // We should check for presence of zlib header and use gzuncompress() or + // gzinflate() as needed. See bug #15305 + $header = unpack('n', substr($data, 0, 2)); + return (0 == $header[1] % 31)? gzuncompress($data): gzinflate($data); + } +} +?> \ No newline at end of file diff --git a/extlib/Net/URL2.php b/extlib/Net/URL2.php index 7a654aed8f..f7fbcd9ce7 100644 --- a/extlib/Net/URL2.php +++ b/extlib/Net/URL2.php @@ -1,44 +1,58 @@ | -// +-----------------------------------------------------------------------+ -// -// $Id: URL2.php,v 1.10 2008/04/26 21:57:08 schmidt Exp $ -// -// Net_URL2 Class (PHP5 Only) - -// This code is released under the BSD License - http://www.opensource.org/licenses/bsd-license.php /** - * @license BSD License + * Net_URL2, a class representing a URL as per RFC 3986. + * + * PHP version 5 + * + * LICENSE: + * + * Copyright (c) 2007-2009, Peytz & Co. A/S + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the distribution. + * * Neither the name of the PHP_LexerGenerator nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. A/S + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: URL2.php 286661 2009-08-02 12:50:54Z schmidt $ + * @link http://www.rfc-editor.org/rfc/rfc3986.txt + */ + +/** + * Represents a URL as per RFC 3986. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. ApS + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version Release: @package_version@ + * @link http://pear.php.net/package/Net_URL2 */ class Net_URL2 { @@ -46,24 +60,24 @@ class Net_URL2 * Do strict parsing in resolve() (see RFC 3986, section 5.2.2). Default * is true. */ - const OPTION_STRICT = 'strict'; + const OPTION_STRICT = 'strict'; /** * Represent arrays in query using PHP's [] notation. Default is true. */ - const OPTION_USE_BRACKETS = 'use_brackets'; + const OPTION_USE_BRACKETS = 'use_brackets'; /** * URL-encode query variable keys. Default is true. */ - const OPTION_ENCODE_KEYS = 'encode_keys'; + const OPTION_ENCODE_KEYS = 'encode_keys'; /** * Query variable separators when parsing the query string. Every character * is considered a separator. Default is specified by the * arg_separator.input php.ini setting (this defaults to "&"). */ - const OPTION_SEPARATOR_INPUT = 'input_separator'; + const OPTION_SEPARATOR_INPUT = 'input_separator'; /** * Query variable separator used when generating the query string. Default @@ -75,7 +89,7 @@ class Net_URL2 /** * Default options corresponds to how PHP handles $_GET. */ - private $options = array( + private $_options = array( self::OPTION_STRICT => true, self::OPTION_USE_BRACKETS => true, self::OPTION_ENCODE_KEYS => true, @@ -86,41 +100,43 @@ class Net_URL2 /** * @var string|bool */ - private $scheme = false; + private $_scheme = false; /** * @var string|bool */ - private $userinfo = false; + private $_userinfo = false; /** * @var string|bool */ - private $host = false; + private $_host = false; /** * @var int|bool */ - private $port = false; + private $_port = false; /** * @var string */ - private $path = ''; + private $_path = ''; /** * @var string|bool */ - private $query = false; + private $_query = false; /** * @var string|bool */ - private $fragment = false; + private $_fragment = false; /** + * Constructor. + * * @param string $url an absolute or relative URL - * @param array $options + * @param array $options an array of OPTION_xxx constants */ public function __construct($url, $options = null) { @@ -130,12 +146,12 @@ class Net_URL2 ini_get('arg_separator.output')); if (is_array($options)) { foreach ($options as $optionName => $value) { - $this->setOption($optionName); + $this->setOption($optionName, $value); } } if (preg_match('@^([a-z][a-z0-9.+-]*):@i', $url, $reg)) { - $this->scheme = $reg[1]; + $this->_scheme = $reg[1]; $url = substr($url, strlen($reg[0])); } @@ -145,19 +161,58 @@ class Net_URL2 } $i = strcspn($url, '?#'); - $this->path = substr($url, 0, $i); + $this->_path = substr($url, 0, $i); $url = substr($url, $i); if (preg_match('@^\?([^#]*)@', $url, $reg)) { - $this->query = $reg[1]; + $this->_query = $reg[1]; $url = substr($url, strlen($reg[0])); } if ($url) { - $this->fragment = substr($url, 1); + $this->_fragment = substr($url, 1); } } + /** + * Magic Setter. + * + * This method will magically set the value of a private variable ($var) + * with the value passed as the args + * + * @param string $var The private variable to set. + * @param mixed $arg An argument of any type. + * @return void + */ + public function __set($var, $arg) + { + $method = 'set' . $var; + if (method_exists($this, $method)) { + $this->$method($arg); + } + } + + /** + * Magic Getter. + * + * This is the magic get method to retrieve the private variable + * that was set by either __set() or it's setter... + * + * @param string $var The property name to retrieve. + * @return mixed $this->$var Either a boolean false if the + * property is not set or the value + * of the private property. + */ + public function __get($var) + { + $method = 'get' . $var; + if (method_exists($this, $method)) { + return $this->$method(); + } + + return false; + } + /** * Returns the scheme, e.g. "http" or "urn", or false if there is no * scheme specified, i.e. if this is a relative URL. @@ -166,18 +221,23 @@ class Net_URL2 */ public function getScheme() { - return $this->scheme; + return $this->_scheme; } /** - * @param string|bool $scheme + * Sets the scheme, e.g. "http" or "urn". Specify false if there is no + * scheme specified, i.e. if this is a relative URL. + * + * @param string|bool $scheme e.g. "http" or "urn", or false if there is no + * scheme specified, i.e. if this is a relative + * URL * * @return void * @see getScheme() */ public function setScheme($scheme) { - $this->scheme = $scheme; + $this->_scheme = $scheme; } /** @@ -188,7 +248,9 @@ class Net_URL2 */ public function getUser() { - return $this->userinfo !== false ? preg_replace('@:.*$@', '', $this->userinfo) : false; + return $this->_userinfo !== false + ? preg_replace('@:.*$@', '', $this->_userinfo) + : false; } /** @@ -201,7 +263,9 @@ class Net_URL2 */ public function getPassword() { - return $this->userinfo !== false ? substr(strstr($this->userinfo, ':'), 1) : false; + return $this->_userinfo !== false + ? substr(strstr($this->_userinfo, ':'), 1) + : false; } /** @@ -212,7 +276,7 @@ class Net_URL2 */ public function getUserinfo() { - return $this->userinfo; + return $this->_userinfo; } /** @@ -220,15 +284,15 @@ class Net_URL2 * in the userinfo part as username ":" password. * * @param string|bool $userinfo userinfo or username - * @param string|bool $password + * @param string|bool $password optional password, or false * * @return void */ public function setUserinfo($userinfo, $password = false) { - $this->userinfo = $userinfo; + $this->_userinfo = $userinfo; if ($password !== false) { - $this->userinfo .= ':' . $password; + $this->_userinfo .= ':' . $password; } } @@ -236,21 +300,24 @@ class Net_URL2 * Returns the host part, or false if there is no authority part, e.g. * relative URLs. * - * @return string|bool + * @return string|bool a hostname, an IP address, or false */ public function getHost() { - return $this->host; + return $this->_host; } /** - * @param string|bool $host + * Sets the host part. Specify false if there is no authority part, e.g. + * relative URLs. + * + * @param string|bool $host a hostname, an IP address, or false * * @return void */ public function setHost($host) { - $this->host = $host; + $this->_host = $host; } /** @@ -261,65 +328,72 @@ class Net_URL2 */ public function getPort() { - return $this->port; + return $this->_port; } /** - * @param int|bool $port + * Sets the port number. Specify false if there is no port number specified, + * i.e. if the default port is to be used. + * + * @param int|bool $port a port number, or false * * @return void */ public function setPort($port) { - $this->port = intval($port); + $this->_port = intval($port); } /** * Returns the authority part, i.e. [ userinfo "@" ] host [ ":" port ], or - * false if there is no authority none. + * false if there is no authority. * * @return string|bool */ public function getAuthority() { - if (!$this->host) { + if (!$this->_host) { return false; } $authority = ''; - if ($this->userinfo !== false) { - $authority .= $this->userinfo . '@'; + if ($this->_userinfo !== false) { + $authority .= $this->_userinfo . '@'; } - $authority .= $this->host; + $authority .= $this->_host; - if ($this->port !== false) { - $authority .= ':' . $this->port; + if ($this->_port !== false) { + $authority .= ':' . $this->_port; } return $authority; } /** - * @param string|false $authority + * Sets the authority part, i.e. [ userinfo "@" ] host [ ":" port ]. Specify + * false if there is no authority. + * + * @param string|false $authority a hostname or an IP addresse, possibly + * with userinfo prefixed and port number + * appended, e.g. "foo:bar@example.org:81". * * @return void */ public function setAuthority($authority) { - $this->user = false; - $this->pass = false; - $this->host = false; - $this->port = false; - if (preg_match('@^(([^\@]+)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { + $this->_userinfo = false; + $this->_host = false; + $this->_port = false; + if (preg_match('@^(([^\@]*)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { if ($reg[1]) { - $this->userinfo = $reg[2]; + $this->_userinfo = $reg[2]; } - $this->host = $reg[3]; + $this->_host = $reg[3]; if (isset($reg[5])) { - $this->port = intval($reg[5]); + $this->_port = intval($reg[5]); } } } @@ -331,65 +405,74 @@ class Net_URL2 */ public function getPath() { - return $this->path; + return $this->_path; } /** - * @param string $path + * Sets the path part (possibly an empty string). + * + * @param string $path a path * * @return void */ public function setPath($path) { - $this->path = $path; + $this->_path = $path; } /** * Returns the query string (excluding the leading "?"), or false if "?" - * isn't present in the URL. + * is not present in the URL. * * @return string|bool * @see self::getQueryVariables() */ public function getQuery() { - return $this->query; + return $this->_query; } /** - * @param string|bool $query + * Sets the query string (excluding the leading "?"). Specify false if "?" + * is not present in the URL. + * + * @param string|bool $query a query string, e.g. "foo=1&bar=2" * * @return void * @see self::setQueryVariables() */ public function setQuery($query) { - $this->query = $query; + $this->_query = $query; } /** - * Returns the fragment name, or false if "#" isn't present in the URL. + * Returns the fragment name, or false if "#" is not present in the URL. * * @return string|bool */ public function getFragment() { - return $this->fragment; + return $this->_fragment; } /** - * @param string|bool $fragment + * Sets the fragment name. Specify false if "#" is not present in the URL. + * + * @param string|bool $fragment a fragment excluding the leading "#", or + * false * * @return void */ public function setFragment($fragment) { - $this->fragment = $fragment; + $this->_fragment = $fragment; } /** * Returns the query string like an array as the variables would appear in - * $_GET in a PHP script. + * $_GET in a PHP script. If the URL does not contain a "?", an empty array + * is returned. * * @return array */ @@ -398,7 +481,7 @@ class Net_URL2 $pattern = '/[' . preg_quote($this->getOption(self::OPTION_SEPARATOR_INPUT), '/') . ']/'; - $parts = preg_split($pattern, $this->query, -1, PREG_SPLIT_NO_EMPTY); + $parts = preg_split($pattern, $this->_query, -1, PREG_SPLIT_NO_EMPTY); $return = array(); foreach ($parts as $part) { @@ -445,6 +528,8 @@ class Net_URL2 } /** + * Sets the query string to the specified variable in the query string. + * * @param array $array (name => value) array * * @return void @@ -452,11 +537,11 @@ class Net_URL2 public function setQueryVariables(array $array) { if (!$array) { - $this->query = false; + $this->_query = false; } else { foreach ($array as $name => $value) { if ($this->getOption(self::OPTION_ENCODE_KEYS)) { - $name = rawurlencode($name); + $name = self::urlencode($name); } if (is_array($value)) { @@ -466,19 +551,21 @@ class Net_URL2 : ($name . '=' . $v); } } elseif (!is_null($value)) { - $parts[] = $name . '=' . $value; + $parts[] = $name . '=' . self::urlencode($value); } else { $parts[] = $name; } } - $this->query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), - $parts); + $this->_query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), + $parts); } } /** - * @param string $name - * @param mixed $value + * Sets the specified variable in the query string. + * + * @param string $name variable name + * @param mixed $value variable value * * @return array */ @@ -490,7 +577,9 @@ class Net_URL2 } /** - * @param string $name + * Removes the specifed variable from the query string. + * + * @param string $name a query string variable, e.g. "foo" in "?foo=1" * * @return void */ @@ -511,27 +600,38 @@ class Net_URL2 // See RFC 3986, section 5.3 $url = ""; - if ($this->scheme !== false) { - $url .= $this->scheme . ':'; + if ($this->_scheme !== false) { + $url .= $this->_scheme . ':'; } $authority = $this->getAuthority(); if ($authority !== false) { $url .= '//' . $authority; } - $url .= $this->path; + $url .= $this->_path; - if ($this->query !== false) { - $url .= '?' . $this->query; + if ($this->_query !== false) { + $url .= '?' . $this->_query; } - if ($this->fragment !== false) { - $url .= '#' . $this->fragment; + if ($this->_fragment !== false) { + $url .= '#' . $this->_fragment; } return $url; } + /** + * Returns a string representation of this URL. + * + * @return string + * @see toString() + */ + public function __toString() + { + return $this->getURL(); + } + /** * Returns a normalized string representation of this URL. This is useful * for comparison of URLs. @@ -555,36 +655,38 @@ class Net_URL2 // See RFC 3886, section 6 // Schemes are case-insensitive - if ($this->scheme) { - $this->scheme = strtolower($this->scheme); + if ($this->_scheme) { + $this->_scheme = strtolower($this->_scheme); } // Hostnames are case-insensitive - if ($this->host) { - $this->host = strtolower($this->host); + if ($this->_host) { + $this->_host = strtolower($this->_host); } // Remove default port number for known schemes (RFC 3986, section 6.2.3) - if ($this->port && - $this->scheme && - $this->port == getservbyname($this->scheme, 'tcp')) { + if ($this->_port && + $this->_scheme && + $this->_port == getservbyname($this->_scheme, 'tcp')) { - $this->port = false; + $this->_port = false; } // Normalize case of %XX percentage-encodings (RFC 3986, section 6.2.2.1) - foreach (array('userinfo', 'host', 'path') as $part) { + foreach (array('_userinfo', '_host', '_path') as $part) { if ($this->$part) { - $this->$part = preg_replace('/%[0-9a-f]{2}/ie', 'strtoupper("\0")', $this->$part); + $this->$part = preg_replace('/%[0-9a-f]{2}/ie', + 'strtoupper("\0")', + $this->$part); } } // Path segment normalization (RFC 3986, section 6.2.2.3) - $this->path = self::removeDotSegments($this->path); + $this->_path = self::removeDotSegments($this->_path); // Scheme based normalization (RFC 3986, section 6.2.3) - if ($this->host && !$this->path) { - $this->path = '/'; + if ($this->_host && !$this->_path) { + $this->_path = '/'; } } @@ -595,7 +697,7 @@ class Net_URL2 */ public function isAbsolute() { - return (bool) $this->scheme; + return (bool) $this->_scheme; } /** @@ -608,7 +710,7 @@ class Net_URL2 */ public function resolve($reference) { - if (is_string($reference)) { + if (!$reference instanceof Net_URL2) { $reference = new self($reference); } if (!$this->isAbsolute()) { @@ -617,54 +719,54 @@ class Net_URL2 // A non-strict parser may ignore a scheme in the reference if it is // identical to the base URI's scheme. - if (!$this->getOption(self::OPTION_STRICT) && $reference->scheme == $this->scheme) { - $reference->scheme = false; + if (!$this->getOption(self::OPTION_STRICT) && $reference->_scheme == $this->_scheme) { + $reference->_scheme = false; } $target = new self(''); - if ($reference->scheme !== false) { - $target->scheme = $reference->scheme; + if ($reference->_scheme !== false) { + $target->_scheme = $reference->_scheme; $target->setAuthority($reference->getAuthority()); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { $authority = $reference->getAuthority(); if ($authority !== false) { $target->setAuthority($authority); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { - if ($reference->path == '') { - $target->path = $this->path; - if ($reference->query !== false) { - $target->query = $reference->query; + if ($reference->_path == '') { + $target->_path = $this->_path; + if ($reference->_query !== false) { + $target->_query = $reference->_query; } else { - $target->query = $this->query; + $target->_query = $this->_query; } } else { - if (substr($reference->path, 0, 1) == '/') { - $target->path = self::removeDotSegments($reference->path); + if (substr($reference->_path, 0, 1) == '/') { + $target->_path = self::removeDotSegments($reference->_path); } else { // Merge paths (RFC 3986, section 5.2.3) - if ($this->host !== false && $this->path == '') { - $target->path = '/' . $this->path; + if ($this->_host !== false && $this->_path == '') { + $target->_path = '/' . $this->_path; } else { - $i = strrpos($this->path, '/'); + $i = strrpos($this->_path, '/'); if ($i !== false) { - $target->path = substr($this->path, 0, $i + 1); + $target->_path = substr($this->_path, 0, $i + 1); } - $target->path .= $reference->path; + $target->_path .= $reference->_path; } - $target->path = self::removeDotSegments($target->path); + $target->_path = self::removeDotSegments($target->_path); } - $target->query = $reference->query; + $target->_query = $reference->_query; } $target->setAuthority($this->getAuthority()); } - $target->scheme = $this->scheme; + $target->_scheme = $this->_scheme; } - $target->fragment = $reference->fragment; + $target->_fragment = $reference->_fragment; return $target; } @@ -677,7 +779,7 @@ class Net_URL2 * * @return string a path */ - private static function removeDotSegments($path) + public static function removeDotSegments($path) { $output = ''; @@ -685,28 +787,25 @@ class Net_URL2 // method $j = 0; while ($path && $j++ < 100) { - // Step A if (substr($path, 0, 2) == './') { + // Step 2.A $path = substr($path, 2); } elseif (substr($path, 0, 3) == '../') { + // Step 2.A $path = substr($path, 3); - - // Step B } elseif (substr($path, 0, 3) == '/./' || $path == '/.') { + // Step 2.B $path = '/' . substr($path, 3); - - // Step C } elseif (substr($path, 0, 4) == '/../' || $path == '/..') { - $path = '/' . substr($path, 4); - $i = strrpos($output, '/'); + // Step 2.C + $path = '/' . substr($path, 4); + $i = strrpos($output, '/'); $output = $i === false ? '' : substr($output, 0, $i); - - // Step D } elseif ($path == '.' || $path == '..') { + // Step 2.D $path = ''; - - // Step E } else { + // Step 2.E $i = strpos($path, '/'); if ($i === 0) { $i = strpos($path, '/', 1); @@ -722,6 +821,22 @@ class Net_URL2 return $output; } + /** + * Percent-encodes all non-alphanumeric characters except these: _ . - ~ + * Similar to PHP's rawurlencode(), except that it also encodes ~ in PHP + * 5.2.x and earlier. + * + * @param $raw the string to encode + * @return string + */ + public static function urlencode($string) + { + $encoded = rawurlencode($string); + // This is only necessary in PHP < 5.3. + $encoded = str_replace('%7E', '~', $encoded); + return $encoded; + } + /** * Returns a Net_URL2 instance representing the canonical URL of the * currently executing PHP script. @@ -737,13 +852,13 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['PHP_SELF']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; - $url->host = $_SERVER['SERVER_NAME']; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_host = $_SERVER['SERVER_NAME']; $port = intval($_SERVER['SERVER_PORT']); - if ($url->scheme == 'http' && $port != 80 || - $url->scheme == 'https' && $port != 443) { + if ($url->_scheme == 'http' && $port != 80 || + $url->_scheme == 'https' && $port != 443) { - $url->port = $port; + $url->_port = $port; } return $url; } @@ -773,7 +888,7 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['REQUEST_URI']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; // Set host and possibly port $url->setAuthority($_SERVER['HTTP_HOST']); return $url; @@ -792,10 +907,10 @@ class Net_URL2 */ function setOption($optionName, $value) { - if (!array_key_exists($optionName, $this->options)) { + if (!array_key_exists($optionName, $this->_options)) { return false; } - $this->options[$optionName] = $value; + $this->_options[$optionName] = $value; } /** @@ -807,7 +922,7 @@ class Net_URL2 */ function getOption($optionName) { - return isset($this->options[$optionName]) - ? $this->options[$optionName] : false; + return isset($this->_options[$optionName]) + ? $this->_options[$optionName] : false; } } diff --git a/install.php b/install.php index 6bfc4c2e21..d34e92dab4 100644 --- a/install.php +++ b/install.php @@ -93,6 +93,13 @@ $external_libraries=array( 'include'=>'HTTP/Request.php', 'check_class'=>'HTTP_Request' ), + array( + 'name'=>'HTTP_Request2', + 'pear'=>'HTTP_Request2', + 'url'=>'http://pear.php.net/package/HTTP_Request2', + 'include'=>'HTTP/Request2.php', + 'check_class'=>'HTTP_Request2' + ), array( 'name'=>'Mail', 'pear'=>'Mail', diff --git a/lib/Shorturl_api.php b/lib/Shorturl_api.php index 18ae7719b2..de4d550127 100644 --- a/lib/Shorturl_api.php +++ b/lib/Shorturl_api.php @@ -41,22 +41,18 @@ abstract class ShortUrlApi return strlen($url) >= common_config('site', 'shorturllength'); } - protected function http_post($data) { - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $this->service_url); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - $response = curl_exec($ch); - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); - curl_close($ch); - if (($code < 200) || ($code >= 400)) return false; - return $response; + protected function http_post($data) + { + $request = HTTPClient::start(); + $response = $request->post($this->service_url, null, $data); + return $response->getBody(); } - protected function http_get($url) { - $encoded_url = urlencode($url); - return file_get_contents("{$this->service_url}$encoded_url"); + protected function http_get($url) + { + $request = HTTPClient::start(); + $response = $request->get($this->service_url . urlencode($url)); + return $response->getBody(); } protected function tidy($response) { diff --git a/lib/curlclient.php b/lib/curlclient.php deleted file mode 100644 index c307c29844..0000000000 --- a/lib/curlclient.php +++ /dev/null @@ -1,179 +0,0 @@ -. - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @copyright 2009 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -define(CURLCLIENT_VERSION, "0.1"); - -/** - * Wrapper for Curl - * - * Makes Curl HTTP client calls within our HTTPClient framework - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -class CurlClient extends HTTPClient -{ - function __construct() - { - } - - function head($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt_array($ch, - array(CURLOPT_NOBODY => true)); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function get($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function post($url, $headers=null, $body=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt($ch, CURLOPT_POST, true); - - if (!is_null($body)) { - curl_setopt($ch, CURLOPT_POSTFIELDS, $body); - } - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function setup($ch) - { - curl_setopt_array($ch, - array(CURLOPT_USERAGENT => $this->userAgent(), - CURLOPT_HEADER => true, - CURLOPT_RETURNTRANSFER => true)); - } - - function userAgent() - { - $version = curl_version(); - return parent::userAgent() . " CurlClient/".CURLCLIENT_VERSION . " cURL/" . $version['version']; - } - - function parseResults($results) - { - $resp = new HTTPResponse(); - - $lines = explode("\r\n", $results); - - if (preg_match("#^HTTP/1.[01] (\d\d\d) .+$#", $lines[0], $match)) { - $resp->code = $match[1]; - } else { - throw Exception("Bad format: initial line is not HTTP status line"); - } - - $lastk = null; - - for ($i = 1; $i < count($lines); $i++) { - $l =& $lines[$i]; - if (mb_strlen($l) == 0) { - $resp->body = implode("\r\n", array_slice($lines, $i + 1)); - break; - } - if (preg_match("#^(\S+):\s+(.*)$#", $l, $match)) { - $k = $match[1]; - $v = $match[2]; - - if (array_key_exists($k, $resp->headers)) { - if (is_array($resp->headers[$k])) { - $resp->headers[$k][] = $v; - } else { - $resp->headers[$k] = array($resp->headers[$k], $v); - } - } else { - $resp->headers[$k] = $v; - } - $lastk = $k; - } else if (preg_match("#^\s+(.*)$#", $l, $match)) { - // continuation line - if (is_null($lastk)) { - throw Exception("Bad format: initial whitespace in headers"); - } - $h =& $resp->headers[$lastk]; - if (is_array($h)) { - $n = count($h); - $h[$n-1] .= $match[1]; - } else { - $h .= $match[1]; - } - } - } - - return $resp; - } -} diff --git a/lib/default.php b/lib/default.php index 7ec8558b07..f6cc4b725a 100644 --- a/lib/default.php +++ b/lib/default.php @@ -228,8 +228,6 @@ $default = array('contentlimit' => null), 'message' => array('contentlimit' => null), - 'http' => - array('client' => 'curl'), // XXX: should this be the default? 'location' => array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth ); diff --git a/lib/httpclient.php b/lib/httpclient.php index f16e31e103..3f82620761 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -31,6 +31,9 @@ if (!defined('STATUSNET')) { exit(1); } +require_once 'HTTP/Request2.php'; +require_once 'HTTP/Request2/Response.php'; + /** * Useful structure for HTTP responses * @@ -38,18 +41,53 @@ if (!defined('STATUSNET')) { * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the HTTP_Request2_Response class with methods to get info + * about any followed redirects. + * * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ */ - -class HTTPResponse +class HTTPResponse extends HTTP_Request2_Response { - public $code = null; - public $headers = array(); - public $body = null; + function __construct(HTTP_Request2_Response $response, $url, $redirects=0) + { + foreach (get_object_vars($response) as $key => $val) { + $this->$key = $val; + } + $this->url = strval($url); + $this->redirectCount = intval($redirects); + } + + /** + * Get the count of redirects that have been followed, if any. + * @return int + */ + function getRedirectCount() + { + return $this->redirectCount; + } + + /** + * Gets the final target URL, after any redirects have been followed. + * @return string URL + */ + function getUrl() + { + return $this->url; + } + + /** + * Check if the response is OK, generally a 200 status code. + * @return bool + */ + function isOk() + { + return ($this->getStatus() == 200); + } } /** @@ -59,64 +97,163 @@ class HTTPResponse * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the PEAR HTTP_Request2 package: + * - sends StatusNet-specific User-Agent header + * - 'follow_redirects' config option, defaulting off + * - 'max_redirs' config option, defaulting to 10 + * - extended response class adds getRedirectCount() and getUrl() methods + * - get() and post() convenience functions return body content directly + * * @category HTTP * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class HTTPClient +class HTTPClient extends HTTP_Request2 { - static $_client = null; - static function start() + function __construct($url=null, $method=self::METHOD_GET, $config=array()) { - if (!is_null(self::$_client)) { - return self::$_client; + $this->config['max_redirs'] = 10; + $this->config['follow_redirects'] = true; + parent::__construct($url, $method, $config); + $this->setHeader('User-Agent', $this->userAgent()); + } + + /** + * Convenience/back-compat instantiator + * @return HTTPClient + */ + public static function start() + { + return new HTTPClient(); + } + + /** + * Convenience function to run a GET request. + * + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function get($url, $headers=array()) + { + return $this->doRequest($url, self::METHOD_GET, $headers); + } + + /** + * Convenience function to run a HEAD request. + * + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function head($url, $headers=array()) + { + return $this->doRequest($url, self::METHOD_HEAD, $headers); + } + + /** + * Convenience function to POST form data. + * + * @param string $url + * @param array $headers optional associative array of HTTP headers + * @param array $data optional associative array or blob of form data to submit + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function post($url, $headers=array(), $data=array()) + { + if ($data) { + $this->addPostParameter($data); } + return $this->doRequest($url, self::METHOD_POST, $headers); + } - $type = common_config('http', 'client'); - - switch ($type) { - case 'curl': - self::$_client = new CurlClient(); - break; - default: - throw new Exception("Unknown HTTP client type '$type'"); - break; + /** + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + protected function doRequest($url, $method, $headers) + { + $this->setUrl($url); + $this->setMethod($method); + if ($headers) { + foreach ($headers as $header) { + $this->setHeader($header); + } } - - return self::$_client; - } - - function head($url, $headers) - { - throw new Exception("HEAD method unimplemented"); - } - - function get($url, $headers) - { - throw new Exception("GET method unimplemented"); - } - - function post($url, $headers, $body) - { - throw new Exception("POST method unimplemented"); - } - - function put($url, $headers, $body) - { - throw new Exception("PUT method unimplemented"); - } - - function delete($url, $headers) - { - throw new Exception("DELETE method unimplemented"); + $response = $this->send(); + return $response; + } + + protected function log($level, $detail) { + $method = $this->getMethod(); + $url = $this->getUrl(); + common_log($level, __CLASS__ . ": HTTP $method $url - $detail"); } + /** + * Pulls up StatusNet's customized user-agent string, so services + * we hit can track down the responsible software. + * + * @return string + */ function userAgent() { return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; } + + /** + * Actually performs the HTTP request and returns an HTTPResponse object + * with response body and header info. + * + * Wraps around parent send() to add logging and redirection processing. + * + * @return HTTPResponse + * @throw HTTP_Request2_Exception + */ + public function send() + { + $maxRedirs = intval($this->config['max_redirs']); + if (empty($this->config['follow_redirects'])) { + $maxRedirs = 0; + } + $redirs = 0; + do { + try { + $response = parent::send(); + } catch (HTTP_Request2_Exception $e) { + $this->log(LOG_ERR, $e->getMessage()); + throw $e; + } + $code = $response->getStatus(); + if ($code >= 200 && $code < 300) { + $reason = $response->getReasonPhrase(); + $this->log(LOG_INFO, "$code $reason"); + } elseif ($code >= 300 && $code < 400) { + $url = $this->getUrl(); + $target = $response->getHeader('Location'); + + if (++$redirs >= $maxRedirs) { + common_log(LOG_ERR, __CLASS__ . ": Too many redirects: skipping $code redirect from $url to $target"); + break; + } + try { + $this->setUrl($target); + $this->setHeader('Referer', $url); + common_log(LOG_INFO, __CLASS__ . ": Following $code redirect from $url to $target"); + continue; + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_ERR, __CLASS__ . ": Invalid $code redirect from $url to $target"); + } + } else { + $reason = $response->getReasonPhrase(); + $this->log(LOG_ERR, "$code $reason"); + } + break; + } while ($maxRedirs); + return new HTTPResponse($response, $this->getUrl(), $redirs); + } } diff --git a/lib/oauthclient.php b/lib/oauthclient.php index f1827726e7..1a86e2460e 100644 --- a/lib/oauthclient.php +++ b/lib/oauthclient.php @@ -43,7 +43,7 @@ require_once 'OAuth.php'; * @link http://status.net/ * */ -class OAuthClientCurlException extends Exception +class OAuthClientException extends Exception { } @@ -97,9 +97,14 @@ class OAuthClient function getRequestToken($url) { $response = $this->oAuthGet($url); - parse_str($response); - $token = new OAuthToken($oauth_token, $oauth_token_secret); - return $token; + $arr = array(); + parse_str($response, $arr); + if (isset($arr['oauth_token']) && isset($arr['oauth_token_secret'])) { + $token = new OAuthToken($arr['oauth_token'], @$arr['oauth_token_secret']); + return $token; + } else { + throw new OAuthClientException(); + } } /** @@ -177,7 +182,7 @@ class OAuthClient } /** - * Make a HTTP request using cURL. + * Make a HTTP request. * * @param string $url Where to make the * @param array $params post parameters @@ -186,40 +191,32 @@ class OAuthClient */ function httpRequest($url, $params = null) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 120, + 'timeout' => 120, + 'follow_redirects' => true, + 'ssl_verify_peer' => false, + )); - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); + // Twitter is strict about accepting invalid "Expect" headers + $request->setHeader('Expect', ''); if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; + $request->setMethod(HTTP_Request2::METHOD_POST); + $request->setBody($params); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new OAuthClientCurlException($msg, $code); + try { + $response = $request->send(); + $code = $response->getStatus(); + if ($code < 200 || $code >= 400) { + throw new OAuthClientException($response->getBody(), $code); + } + return $response->getBody(); + } catch (Exception $e) { + throw new OAuthClientException($e->getMessage(), $e->getCode()); } - - curl_close($ch); - - return $response; } } diff --git a/lib/ping.php b/lib/ping.php index 175bf8440b..5698c40387 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -44,20 +44,16 @@ function ping_broadcast_notice($notice) { array('nickname' => $profile->nickname)), $tags)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: StatusNet/".STATUSNET_VERSION."\r\n", - 'content' => $req))); - $file = file_get_contents($notify_url, false, $context); + $request = HTTPClient::start(); + $httpResponse = $request->post($notify_url, array('Content-Type: text/xml'), $req); - if ($file === false || mb_strlen($file) == 0) { + if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) { common_log(LOG_WARNING, "XML-RPC empty results for ping ($notify_url, $notice->id) "); continue; } - $response = xmlrpc_decode($file); + $response = xmlrpc_decode($httpResponse->getBody()); if (is_array($response) && xmlrpc_is_fault($response)) { common_log(LOG_WARNING, diff --git a/lib/snapshot.php b/lib/snapshot.php index ede846e5b0..2a10c6b935 100644 --- a/lib/snapshot.php +++ b/lib/snapshot.php @@ -172,26 +172,9 @@ class Snapshot { // XXX: Use OICU2 and OAuth to make authorized requests - $postdata = http_build_query($this->stats); - - $opts = - array('http' => - array( - 'method' => 'POST', - 'header' => 'Content-type: '. - 'application/x-www-form-urlencoded', - 'content' => $postdata, - 'user_agent' => 'StatusNet/'.STATUSNET_VERSION - ) - ); - - $context = stream_context_create($opts); - $reporturl = common_config('snapshot', 'reporturl'); - - $result = @file_get_contents($reporturl, false, $context); - - return $result; + $request = HTTPClient::start(); + $request->post($reporturl, null, $this->stats); } /** diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index c14569746f..51236001aa 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -22,6 +22,7 @@ * @category Plugin * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ @@ -69,14 +70,12 @@ class BlogspamNetPlugin extends Plugin { $args = $this->testArgs($notice); common_debug("Blogspamnet args = " . print_r($args, TRUE)); - $request = xmlrpc_encode_request('testComment', array($args)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($this->baseUrl, false, $context); - $response = xmlrpc_decode($file); + $requestBody = xmlrpc_encode_request('testComment', array($args)); + + $request = HTTPClient::start(); + $httpResponse = $request->post($this->baseUrl, array('Content-Type: text/xml'), $requestBody); + + $response = xmlrpc_decode($httpResponse->getBody()); if (xmlrpc_is_fault($response)) { throw new ServerException("$response[faultString] ($response[faultCode])", 500); } else { diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index 80ef44cc96..e18957c36d 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -74,8 +74,8 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/search?'.$str); - if ($result->code == "200") { - $rj = json_decode($result->body); + if ($result->isOk()) { + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { $n = $rj->geonames[0]; @@ -121,9 +121,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { @@ -182,9 +182,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/findNearbyPlaceNameJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { @@ -249,9 +249,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { diff --git a/plugins/LilUrl/LilUrlPlugin.php b/plugins/LilUrl/LilUrlPlugin.php index 7665b6c1e4..852253b023 100644 --- a/plugins/LilUrl/LilUrlPlugin.php +++ b/plugins/LilUrl/LilUrlPlugin.php @@ -58,7 +58,10 @@ class LilUrl extends ShortUrlApi $y = @simplexml_load_string($response); if (!isset($y->body)) return $url; $x = $y->body->p[0]->a->attributes(); - if (isset($x['href'])) return $x['href']; + if (isset($x['href'])) { + common_log(LOG_INFO, __CLASS__ . ": shortened $url to $x[href]"); + return $x['href']; + } return $url; } } diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index 60f7a60c79..915d15c075 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -129,18 +129,12 @@ class LinkbackPlugin extends Plugin } } - $request = xmlrpc_encode_request('pingback.ping', $args); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($endpoint, false, $context); - if (!$file) { - common_log(LOG_WARNING, - "Pingback request failed for '$url' ($endpoint)"); - } else { - $response = xmlrpc_decode($file); + $request = HTTPClient::start(); + try { + $response = $request->post($endpoint, + array('Content-Type: text/xml'), + xmlrpc_encode_request('pingback.ping', $args)); + $response = xmlrpc_decode($response->getBody()); if (xmlrpc_is_fault($response)) { common_log(LOG_WARNING, "Pingback error for '$url' ($endpoint): ". @@ -150,6 +144,9 @@ class LinkbackPlugin extends Plugin "Pingback success for '$url' ($endpoint): ". "'$response'"); } + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_WARNING, + "Pingback request failed for '$url' ($endpoint)"); } } diff --git a/plugins/SimpleUrl/SimpleUrlPlugin.php b/plugins/SimpleUrl/SimpleUrlPlugin.php index 82d7720487..d59d63e47c 100644 --- a/plugins/SimpleUrl/SimpleUrlPlugin.php +++ b/plugins/SimpleUrl/SimpleUrlPlugin.php @@ -65,15 +65,6 @@ class SimpleUrlPlugin extends Plugin class SimpleUrl extends ShortUrlApi { protected function shorten_imp($url) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait - curl_setopt($curlh, CURLOPT_USERAGENT, 'StatusNet'); - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - - curl_setopt($curlh, CURLOPT_URL, $this->service_url.urlencode($url)); - $short_url = curl_exec($curlh); - - curl_close($curlh); - return $short_url; + return $this->http_get($url); } } diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index ed2bf48a22..671e3c7afa 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -152,8 +152,8 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $friends_ids = $client->friendsIds(); } catch (Exception $e) { common_log(LOG_WARNING, $this->name() . - ' - cURL error getting friend ids ' . - $e->getCode() . ' - ' . $e->getMessage()); + ' - error getting friend ids: ' . + $e->getMessage()); return $friends; } diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 81bbbc7c5f..b5428316bd 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -109,12 +109,16 @@ class TwitterStatusFetcher extends ParallelizingDaemon $flink->find(); $flinks = array(); + common_log(LOG_INFO, "hello"); while ($flink->fetch()) { if (($flink->noticesync & FOREIGN_NOTICE_RECV) == FOREIGN_NOTICE_RECV) { $flinks[] = clone($flink); + common_log(LOG_INFO, "sync: foreign id $flink->foreign_id"); + } else { + common_log(LOG_INFO, "nothing to sync"); } } @@ -515,31 +519,32 @@ class TwitterStatusFetcher extends ParallelizingDaemon return $id; } + /** + * Fetch a remote avatar image and save to local storage. + * + * @param string $url avatar source URL + * @param string $filename bare local filename for download + * @return bool true on success, false on failure + */ function fetchAvatar($url, $filename) { - $avatarfile = Avatar::path($filename); + common_debug($this->name() . " - Fetching Twitter avatar: $url"); - $out = fopen($avatarfile, 'wb'); - if (!$out) { - common_log(LOG_WARNING, $this->name() . - " - Couldn't open file $filename"); + $request = HTTPClient::start(); + $response = $request->get($url); + if ($response->isOk()) { + $avatarfile = Avatar::path($filename); + $ok = file_put_contents($avatarfile, $response->getBody()); + if (!$ok) { + common_log(LOG_WARNING, $this->name() . + " - Couldn't open file $filename"); + return false; + } + } else { return false; } - common_debug($this->name() . " - Fetching Twitter avatar: $url"); - - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_FILE, $out); - curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); - $result = curl_exec($ch); - curl_close($ch); - - fclose($out); - - return $result; + return true; } } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 1a5248a9b9..3c6803e49a 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -215,7 +215,7 @@ function broadcast_basicauth($notice, $flink) try { $status = $client->statusesUpdate($statustxt); - } catch (BasicAuthCurlException $e) { + } catch (HTTP_Request2_Exception $e) { return process_error($e, $flink); } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 2a93ff13e2..f1daefab12 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -125,7 +125,7 @@ class TwitterauthorizationAction extends Action $auth_link = $client->getAuthorizeLink($req_tok); - } catch (TwitterOAuthClientException $e) { + } catch (OAuthClientException $e) { $msg = sprintf('OAuth client cURL error - code: %1s, msg: %2s', $e->getCode(), $e->getMessage()); $this->serverError(_('Couldn\'t link your Twitter account.')); diff --git a/plugins/TwitterBridge/twitterbasicauthclient.php b/plugins/TwitterBridge/twitterbasicauthclient.php index 1040d72fb6..d1cf45aec6 100644 --- a/plugins/TwitterBridge/twitterbasicauthclient.php +++ b/plugins/TwitterBridge/twitterbasicauthclient.php @@ -31,26 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -/** - * Exception wrapper for cURL errors - * - * @category Integration - * @package StatusNet - * @author Adrian Lang - * @author Brenda Wallace - * @author Craig Andrews - * @author Dan Moore - * @author Evan Prodromou - * @author mEDI - * @author Sarven Capadisli - * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - * - */ -class BasicAuthCurlException extends Exception -{ -} - /** * Class for talking to the Twitter API with HTTP Basic Auth. * @@ -198,45 +178,27 @@ class TwitterBasicAuthClient */ function httpRequest($url, $params = null, $auth = true) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, - - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); - - if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; - } + $request = HTTPClient::start(); + $request->setConfig(array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verifypeer' => false, + )); if ($auth) { - $options[CURLOPT_USERPWD] = $this->screen_name . - ':' . $this->password; + $request->setAuth($this->screen_name, $this->password); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new BasicAuthCurlException($msg, $code); + if (isset($params)) { + // Twitter is strict about accepting invalid "Expect" headers + $headers = array('Expect:'); + $response = $request->post($url, $headers, $params); + } else { + $response = $request->get($url); } - curl_close($ch); - - return $response; + return $response->getBody(); } } diff --git a/plugins/WikiHashtagsPlugin.php b/plugins/WikiHashtagsPlugin.php index 0c5649aa45..334fc13ba1 100644 --- a/plugins/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtagsPlugin.php @@ -68,14 +68,13 @@ class WikiHashtagsPlugin extends Plugin $editurl = sprintf('http://hashtags.wikia.com/index.php?title=%s&action=edit', urlencode($tag)); - $context = stream_context_create(array('http' => array('method' => "GET", - 'header' => - "User-Agent: " . $this->userAgent()))); - $html = @file_get_contents($url, false, $context); + $request = HTTPClient::start(); + $response = $request->get($url); + $html = $response->getBody(); $action->elementStart('div', array('id' => 'wikihashtags', 'class' => 'section')); - if (!empty($html)) { + if ($response->isOk() && !empty($html)) { $action->element('style', null, "span.editsection { display: none }\n". "table.toc { display: none }"); @@ -100,10 +99,4 @@ class WikiHashtagsPlugin extends Plugin return true; } - - function userAgent() - { - return 'WikiHashtagsPlugin/'.WIKIHASHTAGSPLUGIN_VERSION . - ' StatusNet/' . STATUSNET_VERSION; - } } diff --git a/scripts/enjitqueuehandler.php b/scripts/enjitqueuehandler.php index 08f733b07c..afcac539a6 100755 --- a/scripts/enjitqueuehandler.php +++ b/scripts/enjitqueuehandler.php @@ -46,8 +46,8 @@ class EnjitQueueHandler extends QueueHandler function start() { - $this->log(LOG_INFO, "Starting EnjitQueueHandler"); - $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); + $this->log(LOG_INFO, "Starting EnjitQueueHandler"); + $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); return true; } @@ -56,16 +56,16 @@ class EnjitQueueHandler extends QueueHandler $profile = Profile::staticGet($notice->profile_id); - $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); + $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); - if ( ! $notice->is_local ) { - $this->log(LOG_INFO, "Skipping remote notice"); - return "skipped"; - } + if ( ! $notice->is_local ) { + $this->log(LOG_INFO, "Skipping remote notice"); + return "skipped"; + } - # - # Build an Atom message from the notice - # + # + # Build an Atom message from the notice + # $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); $msg = $profile->nickname . ': ' . $notice->content; @@ -86,36 +86,18 @@ class EnjitQueueHandler extends QueueHandler $atom .= "".common_date_w3dtf($notice->modified)."\n"; $atom .= "\n"; - $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); - $data = "msg=$atom"; + $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); + $data = array( + 'msg' => $atom, + ); - # - # POST the message to $config['enjit']['apiurl'] - # - $ch = curl_init(); + # + # POST the message to $config['enjit']['apiurl'] + # + $request = HTTPClient::start(); + $response = $request->post($url, null, $data); - curl_setopt($ch, CURLOPT_URL, $url); - - curl_setopt($ch, CURLOPT_HEADER, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1) ; - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - - # SSL and Debugging options - # - # curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); - # curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - # curl_setopt($ch, CURLOPT_VERBOSE, 1); - - $result = curl_exec($ch); - - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE ); - - $this->log(LOG_INFO, "Response Code: $code"); - - curl_close($ch); - - return $code; + return $response->isOk(); } } From 4aa6deb8abb725be7fa6dc30bdfd2e7de1ff24d1 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:19:08 +0000 Subject: [PATCH 07/15] Make sure to call FormNoticeEnhancements with a new copy of the form object --- js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util.js b/js/util.js index 051efb6b91..cc7a587da8 100644 --- a/js/util.js +++ b/js/util.js @@ -234,7 +234,7 @@ var SN = { // StatusNet $('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val(''); $('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val(''); $('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove(); - SN.U.FormNoticeEnhancements(form); + SN.U.FormNoticeEnhancements($('#'+form_id)); } }, complete: function(xhr, textStatus) { From b179ab650a129bdd3533b1b225a1e7d5c8f8756c Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 10:38:01 -0500 Subject: [PATCH 08/15] do not allow [ and ] - they are not legal URL characters --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.php b/lib/util.php index d159c583ec..caffcd8076 100644 --- a/lib/util.php +++ b/lib/util.php @@ -452,9 +452,9 @@ function common_replace_urls_callback($text, $callback, $notice_id = null) { ')'. '(?:'. '(?:\:\d+)?'. //:port - '(?:/[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path - '(?:\?[\pN\pL\$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string - '(?:\#[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment + '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path + '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string + '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment ')(? Date: Mon, 2 Nov 2009 10:38:58 -0500 Subject: [PATCH 09/15] do not allow " in URLs - they are not legal URL characters --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.php b/lib/util.php index caffcd8076..31a78a876a 100644 --- a/lib/util.php +++ b/lib/util.php @@ -452,9 +452,9 @@ function common_replace_urls_callback($text, $callback, $notice_id = null) { ')'. '(?:'. '(?:\:\d+)?'. //:port - '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path - '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string - '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment + '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@]*)?'. // /path + '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@\/]*)?'. // ?query string + '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\@/\?\#]*)?'. // #fragment ')(? Date: Mon, 2 Nov 2009 12:52:46 -0500 Subject: [PATCH 10/15] fix the [] unit tests --- tests/URLDetectionTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/URLDetectionTest.php b/tests/URLDetectionTest.php index 0cc03ccce7..d83f9faf58 100644 --- a/tests/URLDetectionTest.php +++ b/tests/URLDetectionTest.php @@ -185,12 +185,12 @@ class URLDetectionTest extends PHPUnit_Framework_TestCase array('http://example.com/path/(foo)/bar', 'http://example.com/path/(foo)/bar'), array('http://example.com/path/[foo]/bar', - 'http://example.com/path/[foo]/bar'), + 'http://example.com/path/[foo]/bar'), array('http://example.com/path/foo/(bar)', 'http://example.com/path/foo/(bar)'), //Not a valid url - urls cannot contain unencoded square brackets array('http://example.com/path/foo/[bar]', - 'http://example.com/path/foo/[bar]'), + 'http://example.com/path/foo/[bar]'), array('Hey, check out my cool site http://example.com okay?', 'Hey, check out my cool site http://example.com okay?'), array('What about parens (e.g. http://example.com/path/foo/(bar))?', From 1b00cdf12413d1b6b92edf6aa377448edb516a12 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:56:55 +0000 Subject: [PATCH 11/15] Binding keyup/keydown only once for .form_notice --- js/util.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/js/util.js b/js/util.js index cc7a587da8..b90f33ec7d 100644 --- a/js/util.js +++ b/js/util.js @@ -53,6 +53,8 @@ var SN = { // StatusNet U: { // Utils FormNoticeEnhancements: function(form) { form_id = form.attr('id'); + $('#'+form_id+' #'+SN.C.S.NoticeDataText).unbind('keyup'); + $('#'+form_id+' #'+SN.C.S.NoticeDataText).unbind('keydown'); if (maxLength > 0) { $('#'+form_id+' #'+SN.C.S.NoticeDataText).bind('keyup', function(e) { SN.U.Counter(form); @@ -68,8 +70,6 @@ var SN = { // StatusNet if($('body')[0].id != 'conversation') { $('#'+form_id+' textarea').focus(); } - - SN.U.FormNoticeXHR(form); }, SubmitOnReturn: function(event, el) { @@ -190,7 +190,7 @@ var SN = { // StatusNet } else { $('#'+form_id+' #'+SN.C.S.NoticeDataText).val(''); - SN.U.FormNoticeEnhancements($('#'+SN.C.S.FormNotice)); + SN.U.FormNoticeEnhancements($('#'+form_id)); } } } @@ -354,6 +354,7 @@ var SN = { // StatusNet $.get(NDM.attr('href'), null, function(data) { $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); + SN.U.FormNoticeXHR(NDMF); SN.U.FormNoticeEnhancements(NDMF); NDMF.append(''); $('.entity_send-a-message button').click(function(){ @@ -374,7 +375,10 @@ var SN = { // StatusNet $(document).ready(function(){ if ($('body.user_in').length > 0) { - $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); + $('.'+SN.C.S.FormNotice).each(function() { + SN.U.FormNoticeXHR($(this)); + SN.U.FormNoticeEnhancements($(this)); + }); $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); From 1cf67f4f714be45cf93302f223a58c65402e3038 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 12:57:51 -0500 Subject: [PATCH 12/15] allow <> to surround the url (like () or []) --- lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 31a78a876a..ed7e10f6bd 100644 --- a/lib/util.php +++ b/lib/util.php @@ -422,7 +422,7 @@ function common_render_text($text) function common_replace_urls_callback($text, $callback, $notice_id = null) { // Start off with a regex $regex = '#'. - '(?:^|[\s\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'. + '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'. '('. '(?:'. '(?:'. //Known protocols @@ -480,6 +480,10 @@ function callback_helper($matches, $callback, $notice_id) { array( 'left'=>'{', 'right'=>'}' + ), + array( + 'left'=>'<', + 'right'=>'>' ) ); $cannotEndWith=array('.','?',',','#'); From b62e47308754374bd4ca8c7366dc46eebff7cf81 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 11:26:46 -0800 Subject: [PATCH 13/15] Update master .po template & merge updates to all localizations --- locale/bg/LC_MESSAGES/statusnet.mo | Bin 97732 -> 119506 bytes locale/bg/LC_MESSAGES/statusnet.po | 3716 +++++++++-- locale/ca/LC_MESSAGES/statusnet.mo | Bin 84543 -> 103127 bytes locale/ca/LC_MESSAGES/statusnet.po | 3775 ++++++++++-- locale/cs/LC_MESSAGES/statusnet.mo | Bin 38703 -> 51797 bytes locale/cs/LC_MESSAGES/statusnet.po | 3687 +++++++++-- locale/de/LC_MESSAGES/statusnet.mo | Bin 84579 -> 103431 bytes locale/de/LC_MESSAGES/statusnet.po | 3861 ++++++++++-- locale/el/LC_MESSAGES/statusnet.mo | Bin 27725 -> 37126 bytes locale/el/LC_MESSAGES/statusnet.po | 3649 +++++++++-- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 78521 -> 96014 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 3795 ++++++++++-- locale/es/LC_MESSAGES/statusnet.mo | Bin 83472 -> 101938 bytes locale/es/LC_MESSAGES/statusnet.po | 3756 +++++++++-- locale/fi/LC_MESSAGES/statusnet.mo | Bin 86008 -> 104971 bytes locale/fi/LC_MESSAGES/statusnet.po | 3775 ++++++++++-- locale/fr/LC_MESSAGES/statusnet.mo | Bin 86462 -> 105593 bytes locale/fr/LC_MESSAGES/statusnet.po | 7415 +++++++++++++--------- locale/ga/LC_MESSAGES/statusnet.mo | Bin 73858 -> 106699 bytes locale/ga/LC_MESSAGES/statusnet.po | 8195 +++++++++++++++++-------- locale/he/LC_MESSAGES/statusnet.mo | Bin 42235 -> 56035 bytes locale/he/LC_MESSAGES/statusnet.po | 3673 +++++++++-- locale/it/LC_MESSAGES/statusnet.mo | Bin 83401 -> 102032 bytes locale/it/LC_MESSAGES/statusnet.po | 3771 ++++++++++-- locale/ja/LC_MESSAGES/statusnet.mo | Bin 46648 -> 60793 bytes locale/ja/LC_MESSAGES/statusnet.po | 3689 +++++++++-- locale/ko/LC_MESSAGES/statusnet.mo | Bin 88929 -> 108710 bytes locale/ko/LC_MESSAGES/statusnet.po | 3923 ++++++++++-- locale/mk/LC_MESSAGES/statusnet.mo | Bin 50541 -> 67520 bytes locale/mk/LC_MESSAGES/statusnet.po | 3695 +++++++++-- locale/nb/LC_MESSAGES/statusnet.mo | Bin 22230 -> 28771 bytes locale/nb/LC_MESSAGES/statusnet.po | 3637 +++++++++-- locale/nl/LC_MESSAGES/statusnet.mo | Bin 63579 -> 80080 bytes locale/nl/LC_MESSAGES/statusnet.po | 3738 +++++++++-- locale/nn/LC_MESSAGES/statusnet.mo | Bin 80329 -> 98211 bytes locale/nn/LC_MESSAGES/statusnet.po | 3752 +++++++++-- locale/pl/LC_MESSAGES/statusnet.mo | Bin 124708 -> 135651 bytes locale/pl/LC_MESSAGES/statusnet.po | 1579 ++++- locale/pt/LC_MESSAGES/statusnet.mo | Bin 25415 -> 32851 bytes locale/pt/LC_MESSAGES/statusnet.po | 3639 +++++++++-- locale/pt_BR/LC_MESSAGES/statusnet.mo | Bin 83652 -> 102280 bytes locale/pt_BR/LC_MESSAGES/statusnet.po | 3756 +++++++++-- locale/ru/LC_MESSAGES/statusnet.mo | Bin 109421 -> 132937 bytes locale/ru/LC_MESSAGES/statusnet.po | 3788 ++++++++++-- locale/statusnet.po | 1484 ++++- locale/sv/LC_MESSAGES/statusnet.mo | Bin 69744 -> 85551 bytes locale/sv/LC_MESSAGES/statusnet.po | 3706 +++++++++-- locale/te/LC_MESSAGES/statusnet.mo | Bin 43726 -> 59280 bytes locale/te/LC_MESSAGES/statusnet.po | 3649 +++++++++-- locale/tr/LC_MESSAGES/statusnet.mo | Bin 37703 -> 50465 bytes locale/tr/LC_MESSAGES/statusnet.po | 3684 +++++++++-- locale/uk/LC_MESSAGES/statusnet.mo | Bin 109628 -> 133916 bytes locale/uk/LC_MESSAGES/statusnet.po | 3764 ++++++++++-- locale/vi/LC_MESSAGES/statusnet.mo | Bin 78725 -> 99171 bytes locale/vi/LC_MESSAGES/statusnet.po | 3895 ++++++++++-- locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 76504 -> 93634 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 3746 +++++++++-- locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 17868 -> 24937 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 3640 +++++++++-- 59 files changed, 97298 insertions(+), 18534 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo index 335fe0b92bebef6009af8c47bb55c17e7078a14b..e444a365f805ae09540c1a649a589f6d384f335d 100644 GIT binary patch delta 27743 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 L%$(~x)y@1r34@7o delta 19663 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 E0cW<+ivR!s diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index c0bc8379f5..da920ef257 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet 0.6.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-27 18:04+0000\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -19,14 +19,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Търсене на \"%s\" в потока" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." @@ -37,17 +37,19 @@ msgid " from " msgstr " от " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Реплики на %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ви кани да ползвате заедно %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Искрено ваши, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." @@ -127,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s реплики на съобщения от %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Общ поток в %s" @@ -155,34 +161,48 @@ msgstr "Общ поток в %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и приятели" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Състояние на %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Поток на %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -190,7 +210,8 @@ msgstr "" "(Трябва да получите веднага електронно писмо с указания за потвърждаване " "адреса на е-пощата ви.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -199,7 +220,8 @@ msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е услуга за микроблогване. " @@ -211,32 +233,36 @@ msgstr ". Изписват се пълните имена или псевдон #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " "поле." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или повече знака" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или повече знака. И не ги забравяйте!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 или повече знака. Задължително поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +272,7 @@ msgstr "" "от %s, трябва да го одобрите." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +308,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Не е открит методът в API." @@ -304,16 +358,23 @@ msgstr "Не е открит методът в API." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Методът в API все още се разработва." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Относно" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Приемане" @@ -324,6 +385,9 @@ msgstr "Приемане" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Добавяне" @@ -341,27 +405,29 @@ msgstr "Добавяне или премахване OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адрес" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Адреси на приятели, които каните (по един на ред)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Всички абонаменти" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Всички бележки за %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Всички бележки, намерени с \"%s\"" @@ -371,30 +437,37 @@ msgstr "Всички бележки, намерени с \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Вече сте влезли." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Вече сте абонирани!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Наистина ли искате да изтриете тази бележка?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобряване на абонамента" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -404,15 +477,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватарът е обновен." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -422,6 +499,7 @@ msgstr "" "съобщение с инструкции. (Добавихте ли %s в списъка си там?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -430,7 +508,7 @@ msgstr "" "спам) за съобщение с указания." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Очаква се потвърждение за този телефонен номер." @@ -441,6 +519,8 @@ msgstr "Преди »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "За мен" @@ -448,16 +528,18 @@ msgstr "За мен" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Грешка при изтриване на бележката." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Грешка при четене адреса на аватара '%s'" @@ -465,6 +547,8 @@ msgstr "Грешка при четене адреса на аватара '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Грешка при запазване на новата парола." @@ -472,31 +556,34 @@ msgstr "Грешка при запазване на новата парола." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Отказ" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Грешка при създаване на потребителски OpenID обект" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Грешка при нормализация на този Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промяна" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Промяна обработката на писмата" @@ -506,11 +593,12 @@ msgid "Change password" msgstr "Смяна на паролата" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Смяна на паролата" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Промяна настройките на профила" @@ -520,6 +608,9 @@ msgstr "Промяна настройките на профила" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Потвърждаване" @@ -532,12 +623,14 @@ msgstr "Потвърждаване на адреса" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Потвърждаването е прекъснато." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код за потвърждение" @@ -546,7 +639,8 @@ msgstr "Код за потвърждение" msgid "Confirmation code not found." msgstr "Кодът за потвърждение не е открит." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -580,20 +674,24 @@ msgstr "" "само приятни мигове!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Свързване" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Свързване на съществуваща сметка" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Грешка при създаване на OpenID форма: %s" @@ -601,35 +699,39 @@ msgstr "Грешка при създаване на OpenID форма: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Грешка при проследяване — потребителят не е намерен." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Грешка при пренасочване към сървър: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Грешка при запазване данните на аватара" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Грешка при запазване на новия профил" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Грешка при абониране на друг потребител за вас." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Грешка при абониране." @@ -649,15 +751,17 @@ msgstr "Грешка при преобразуване на tokens за одоб #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Грешка при изтриване на абонамента." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Не са открити бележки." @@ -670,29 +774,38 @@ msgstr "Не е получен token за одобрение." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не може да се вмъкне код за потвърждение." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Грешка при обновяване записа на потребител." @@ -708,42 +821,48 @@ msgstr "Грешка при обновяване записа на потреб #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Грешка при обновяване на потребителя." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Създаване" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Създаване на нов потребител с този псевдоним." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Създаване на нова сметка" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Създаване на нов акаунт за OpenID, който вече има потребител." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Текущ потвърден Jabber/GTalk адрес." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Текущ потвърден телефонен номер за SMS-и." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Текущ потвърден адрес на е-поща." @@ -752,23 +871,27 @@ msgid "Currently" msgstr "В момента" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Грешка в базата от данни — отговор при вмъкването: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Изтриване на бележката" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишете себе си и интересите си в до 140 букви" @@ -776,11 +899,13 @@ msgstr "Опишете себе си и интересите си в до 140 б #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Е-поща" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Адрес на е-поща" @@ -790,39 +915,43 @@ msgid "Email Settings" msgstr "Настройки на е-поща" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Адресът на е-поща вече се използва." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Потвърждаване адреса на е-поща" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Адрес на е-поща, като \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Адреси на е-поща" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Въведете псевдоним или е-поща." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Въведете кода, който получихте по телефона." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Грешка при одобряване на token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Грешка при свързване на потребителя към OpenID." @@ -833,39 +962,46 @@ msgstr "Грешка при свързване на потребителя." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Грешка при вмъкване на аватар" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Грешка при вмъкване на нов профил" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка при вмъкване на отдалечен профил" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Грешка при запазване на потвърждение за адрес" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Грешка при запазване на отдалечен профил" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Грешка при запазване на профил" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Грешка при запазване на потребител." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Грешка при запазване на потребител — невалидност." @@ -874,6 +1010,9 @@ msgstr "Грешка при запазване на потребител — н #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Грешка в настройките на потребителя." @@ -884,6 +1023,7 @@ msgstr "Грешка при обновяване на профил" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Грешка при обновяване на отдалечен профил" @@ -893,33 +1033,36 @@ msgid "Error with confirmation code." msgstr "Грешка в кода за потвърждение." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Съществуващ псевдоним" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Въпроси" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Неуспешно обновяване на аватара." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Емисия с приятелите на %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Емисия с отговорите към %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Емисия за етикета %s" @@ -934,7 +1077,7 @@ msgstr "Търсене в съдържанието на бележките" msgid "Find people on this site" msgstr "Търсене на хора в сайта" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -947,6 +1090,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Пълно име" @@ -955,23 +1103,33 @@ msgstr "Пълно име" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помощ" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Начало" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Лична страница" @@ -979,21 +1137,27 @@ msgstr "Лична страница" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Искам да изпращам бележки по пощата." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM адрес" @@ -1003,7 +1167,7 @@ msgid "IM Settings" msgstr "IM настройки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1011,7 +1175,7 @@ msgstr "" "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " "име и парола." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1019,7 +1183,7 @@ msgstr "" "Ако искате да добавите OpenID към сметката си, въведете го в кутийката " "отдолу и натиснете \"Добавяне\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1030,25 +1194,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Входяща поща" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Входящият адрес на е-поща е премахнат." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Грешна стара парола" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Грешно име или парола." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1057,30 +1227,31 @@ msgstr "" "възстановяване на паролата." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неправилен адрес на аватар '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Неправилен адрес на е-поща: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Неправилен адрес на домашна страница '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неправилен адрес на лиценз '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Невалидно съдържание на бележка" @@ -1095,13 +1266,13 @@ msgid "Invalid notice url" msgstr "Неправилен адрес на бележка" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неправилен адрес на профил '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неправилен адрес на профил (грешен формат)" @@ -1119,28 +1290,35 @@ msgstr "Неправилен размер." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Неправилно име или парола." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Поканите са изпратени." #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Изпратени са покани до следните хора:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Покани" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Покани за нови потребители" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1152,11 +1330,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Този Jabber ID принадлежи на друг потребител." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1166,12 +1345,14 @@ msgstr "" "сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Език" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Името на езика е твърде дълго (може да е до 50 знака)." @@ -1180,7 +1361,15 @@ msgstr "Името на езика е твърде дълго (може да е #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Местоположение" @@ -1189,7 +1378,12 @@ msgstr "Местоположение" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." @@ -1198,18 +1392,22 @@ msgstr "Името на местоположението е твърде дъл #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Вход" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Влизане с [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1219,22 +1417,26 @@ msgstr "" "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " "нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Изход" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "По-дълго име, за предпочитане \"истинското\" ви име." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или забравена парола" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." @@ -1245,16 +1447,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Управление на пощата, идваща от %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Участник от" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог на %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1266,42 +1470,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Текстовете и файловите ми са достъпни под " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ново" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Нов адрес на е-поща за публикщуване в %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нов псевдоним" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Нова бележка" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Нова парола" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новата парола е запазена. Влязохте успешно." @@ -1311,7 +1523,13 @@ msgstr "Новата парола е запазена. Влязохте успе #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Псевдоним" @@ -1320,7 +1538,12 @@ msgstr "Псевдоним" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." @@ -1329,49 +1552,60 @@ msgstr "Опитайте друг псевдоним, този вече е за #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " "между тях." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Този псевдоним не е разрешен тук." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Псевдоним на потребител, когото искате да следите" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Псевдоним или е-поща" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Не" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Няма Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Няма заявка за одобрение." #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Не е избран оператор." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Не е въведен код." @@ -1383,11 +1617,15 @@ msgstr "Няма код за потвърждение." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Няма съдържание!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Не е въведена е-поща." @@ -1396,7 +1634,9 @@ msgid "No id." msgstr "Няма id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Няма входящ адрес на е-поща." @@ -1407,6 +1647,7 @@ msgstr "Отдалеченият сървър не е предоставил п #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Няма псевдоним." @@ -1414,12 +1655,14 @@ msgstr "Няма псевдоним." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Не е въведен телефонен номер." @@ -1429,7 +1672,8 @@ msgid "No profile URL returned by server." msgstr "Сървърът не е върнал адрес на профила." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Няма указана е-поща за този потребител." @@ -1441,7 +1685,7 @@ msgstr "Заявката не е намерена!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Няма резултати" @@ -1452,12 +1696,16 @@ msgstr "Няма размер." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Не е открита бележка с такъв идентификатор." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не е открита бележка с такъв идентификатор." @@ -1467,13 +1715,15 @@ msgid "No such OpenID." msgstr "Няма такъв OpenID-адрес." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Няма такъв документ." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Няма такава бележка." @@ -1511,12 +1761,22 @@ msgstr "Няма такъв абонамент" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Няма такъв потребител" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Няма потребител с такава е-поща или потребителско име." @@ -1530,32 +1790,38 @@ msgid "Not a recovery code." msgstr "Това не е код за възстановяване." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Това не е регистриран потребител." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неправилен Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неправилен OpenID" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Това не е правилен адрес на е-поща." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." @@ -1563,6 +1829,11 @@ msgstr "Неправилен адрес на е-поща." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." @@ -1582,7 +1853,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неправилен адрес на профил (няма YADIS документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Файлът не е изображение или е повреден." @@ -1593,11 +1865,13 @@ msgstr "Забранено." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Неочакван отговор." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не е открито." @@ -1613,11 +1887,15 @@ msgstr "Не е открито." #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не сте влезли в системата." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не сте абонирани!" @@ -1634,39 +1912,44 @@ msgid "Notice feed for %s" msgstr "Емисия с бележки на %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Бележката няма профил" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Бележки" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Стара парола" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Настройки на OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоматично предаване на OpenID" @@ -1674,29 +1957,34 @@ msgstr "Автоматично предаване на OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Влизане с OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Влизането с OpenID е прекратено." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Грешка при влизане с OpenID: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Проблем с OpenID: %s" @@ -1712,11 +2000,12 @@ msgid "OpenID settings" msgstr "Настройки на OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Частично качване на файла." @@ -1726,34 +2015,46 @@ msgstr "Частично качване на файла." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Парола" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Паролата и потвърждението й не съвпадат." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Паролата трябва да е от поне 6 знака." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Поискано е възстановяване на парола" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Паролата е записана." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Паролите не съвпадат." @@ -1773,14 +2074,17 @@ msgid "People search" msgstr "Търсене на хора" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Лично" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Лично съобщение" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонен номер — с код, без пунктоация и без интервали." @@ -1794,7 +2098,7 @@ msgstr "" "на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." @@ -1803,7 +2107,9 @@ msgstr "Публикуване промяната на състоянието м #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Настройки" @@ -1812,42 +2118,52 @@ msgstr "Настройки" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Настройките са запазени." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Предпочитан език" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Поверителност" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профил" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Адрес на профила" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Настройки на профила" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Непознат профил" @@ -1856,17 +2172,19 @@ msgid "Public Stream Feed" msgstr "Емисия на общия поток" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Общ поток" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Публикуване на MicroID за адреса на е-пощата." @@ -1876,12 +2194,14 @@ msgid "Recent Tags" msgstr "Скорошни етикети" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Възстановяване" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Възстановяване на паролата" @@ -1894,37 +2214,45 @@ msgstr "Код за възстановяване на непознат потр #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Записването не е позволено." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Записването е успешно." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Охвърляне" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запомни ме" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Отдалечен профил без съответстващ локален" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Отдалечен абонамент" @@ -1938,6 +2266,9 @@ msgstr "Отдалечен абонамент" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Премахване" @@ -1946,7 +2277,7 @@ msgstr "Премахване" msgid "Remove OpenID" msgstr "Премахване на OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1955,34 +2286,41 @@ msgstr "" "невъзможно. За да го изтриете, първо добавете друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Отговори" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Отговори на %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Обновяване" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Нова парола" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Телефонен номер за SMS" @@ -1991,17 +2329,18 @@ msgstr "Телефонен номер за SMS" msgid "SMS Settings" msgstr "Настройки за SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Потвърждение за SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Също като паролата по-горе" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." @@ -2014,12 +2353,21 @@ msgstr "Същото като паролата по-горе. Задължите #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Търсене" @@ -2029,7 +2377,7 @@ msgid "Search Stream Feed" msgstr "Търсене в емисията на потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2038,7 +2386,7 @@ msgstr "" "Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " "търсене (трябва да са по-дълги от 3 символа) с интервали." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2048,33 +2396,38 @@ msgstr "" "Отделяйте фразите за " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Изберете оператор" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Прати" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Изпратете писмо до този адрес за публикуване като бележка." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Изпращане на уведомления за нови абонаменти по пощата." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Изпращане на бележките по Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2083,15 +2436,18 @@ msgstr "" "такси от оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Изпращане по Jabber/GTalk на отговори от хора, " #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Настройки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Настройките са запазени." @@ -2111,27 +2467,32 @@ msgid "Something weird happened." msgstr "Случи се нещо странно." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Това не е вашият входящ адрес." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Изходен код" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистики" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Няма запазен OpenID." @@ -2139,24 +2500,28 @@ msgstr "Няма запазен OpenID." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Абониране" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Абонати" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Абонаментът е одобрен" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Абонаментът е отказан" @@ -2164,28 +2529,35 @@ msgstr "Абонаментът е отказан" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Абонаменти" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системна грешка при качване на файл." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Етикети" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Търсене на текст" @@ -2205,6 +2577,7 @@ msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Тази е-поща вече се използва от друг потребител." @@ -2214,63 +2587,73 @@ msgid "That file is too big." msgstr "Файлът е твърде голям." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Това вече е вашият Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Това и сега е адресът на е-пощата ви." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Това и сега е номерът на телефона ви." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Това не е вашият Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Това не е вашият адрес на е-поща." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Това не е вашият телефонен номер." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Грешен IM адрес." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Този код за потвърждение е грешен." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Този телефонен номер вече се използва от друг потребител." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Това е твърде дълго. Трябва да е най-много 255 знака." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресът \"%s\" е потвърден за сметката ви." @@ -2279,11 +2662,14 @@ msgstr "Адресът \"%s\" е потвърден за сметката ви." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресът е премахнат." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2292,7 +2678,8 @@ msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " "одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2302,33 +2689,38 @@ msgstr "" "абонамента, проверете инструкциите на сайта." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Това са хората, които четат бележките на %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Tова са хората, които четат бележките ви." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Хора, чийто бележки %s чете." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Няма хора, чийто бележки четете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2337,7 +2729,7 @@ msgstr "" "преминете към OpenID доставчика си натиснете бутона за изпращане." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2352,6 +2744,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Този метод изисква заявка POST или DELETE." @@ -2360,25 +2755,37 @@ msgstr "Този метод изисква заявка POST или DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Този метод изисква заявка POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страницата не е достъпна във вида медия, който приемате" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часови пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Не е избран часови пояс" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2391,18 +2798,21 @@ msgstr "" "профила си в нея по-долу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Трябва да се дадат два идентификатора или имена на потребители." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес на личната ви страница, блог или профил в друг сайт" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" @@ -2414,15 +2824,22 @@ msgstr "Адрес на профила ви в друга, съвместима #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Неочаквано изпращане на форма." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Неочаквано подновяване на паролата." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Непознато действие" @@ -2453,38 +2870,47 @@ msgstr "Отписване" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдържана версия на OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Форматът на файла с изображението не се поддържа." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Бележки през SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Качване" @@ -2505,6 +2931,7 @@ msgid "Upload a new profile image" msgstr "Качване на нова снимка за профила" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2512,7 +2939,9 @@ msgstr "" "услугата на сайта." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Използва се само за промени, обяви или възстановяване на паролата" @@ -2536,11 +2965,16 @@ msgstr "Потребителят, когото проследявате, не с #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Потребителят няма профил." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Потребителски псевдоним" @@ -2549,29 +2983,33 @@ msgid "User not found." msgstr "Потребителят не е открит." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "В кой часови пояс сте обикновено?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Какво става, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Къде се намирате (град, община, държава и т.н.)" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Грешен вид изображение за '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Грешен размер на изображението '%s'" @@ -2579,7 +3017,9 @@ msgstr "Грешен размер на изображението '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Да" @@ -2600,11 +3040,12 @@ msgid "You are already logged in!" msgstr "Вече сте влезли!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Вече сте абонирани за следните потребители:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "С указания потребител не сте записани като приятели." @@ -2622,7 +3063,7 @@ msgstr "Първо се регистрирайте, за да започнете msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2631,6 +3072,7 @@ msgstr "" "\"Премахване\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2639,7 +3081,8 @@ msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." @@ -2648,21 +3091,23 @@ msgstr "Можете да обновите личния си профил, за #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Можете да ползвате локален абонамент!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Не сте ни изпратили този профил" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2676,16 +3121,19 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Не може да изтривате бележки на друг потребител." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "За да каните хора в %s, трябва да сте влезли." #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2693,20 +3141,21 @@ msgstr "" "Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " "увеличаването на общността тук!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Разпознати сте. Въведете паролата си по-долу. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Вашият OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2715,47 +3164,57 @@ msgstr "" "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " "същ акаунт. От тук се управляват съответните OpenID." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "преди около ден" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "преди около минута" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "преди около месец" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "преди около година" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "преди около час" @@ -2777,12 +3236,14 @@ msgid "reply" msgstr "отговор" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "също като паролата по-горе" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "неподдържан вид файл" @@ -2803,6 +3264,26 @@ msgstr "« След" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" @@ -2811,6 +3292,7 @@ msgid "This notice is not a favorite!" msgstr "Тази бележка не е отбелязана като любима!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Грешка при изтриване на любима бележка." @@ -2818,22 +3300,28 @@ msgstr "Грешка при изтриване на любима бележка. msgid "Favor" msgstr "Любимо" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Изпращане на писмо при ново лично съобщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Тази бележка вече е отбелязана като любима!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." @@ -2843,11 +3331,13 @@ msgstr "Нелюбимо" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s любими бележки" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Емисия с любимите бележки на %s" @@ -2889,23 +3379,32 @@ msgid "Login with your username and password. " msgstr "Влезте с името и паролата си. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Твърде дълго. Може да е най-много 140 знака." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Не е указан получател." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Не може да изпращате съобщения до този потребител." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2913,11 +3412,13 @@ msgstr "" "тихичко." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Няма такъв потребител" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Ново съобщение" @@ -2971,6 +3472,11 @@ msgstr "Можете а обновите личните си данни тук " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Потребител без съответстващ профил" @@ -2999,6 +3505,8 @@ msgid "New password successfully saved. " msgstr "Новата парола е записана. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Паролата трябва да е 6 или повече знака." @@ -3019,12 +3527,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Емисия с любимите бележки на %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Грешка при изтегляне на любимите бележки" @@ -3032,7 +3543,7 @@ msgstr "Грешка при изтегляне на любимите бележ msgid "No such message." msgstr "Няма такова съобщение" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Само подателят и получателят могат да четат това съобщение." @@ -3056,53 +3567,72 @@ msgid "Mobile carrier for your phone. " msgstr "Мобилен оператор на телефона ви." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Преки съобщения до %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Всички преки съобщения, изпратени до %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Изпратени от вас преки съобщения" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всички преки съобщения, изпратени от %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Липсва текст на съобщението" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Получателят не е открит" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не може да изпращате преки съобщения до хора, които не са в списъка ви с " "приятели." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Отбелязани като любими от %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s бележки отбелязани като любими от %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s отбеляза бележката ви като любима" @@ -3125,14 +3655,17 @@ msgstr "" "там." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Настройки за Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Профил в Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Текущ проверен профил в Twitter" @@ -3141,6 +3674,7 @@ msgid "Twitter Username" msgstr "Име в Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без интервали, моля!" @@ -3149,18 +3683,22 @@ msgid "Twitter Password" msgstr "Парола за Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматично препращане на бележките ми към Twitter" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Препращане на локалните отговори с \"@\" и към Twitter" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Абониране за приятелите ми от Twitter тук" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3169,6 +3707,7 @@ msgstr "" "черта. Може да е най-много 15 знака." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Грешка при сверяване на данните ви с Twitter" @@ -3179,33 +3718,43 @@ msgstr "Грешка при извличане данните на профил #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Грешка при записване настройките за Twitter" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Настройките за Twitter са запазени." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Това не е вашият профил в Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Грешка при премахване на профила от Twitter" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Профилът от Twitter е премахнат." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Грешка при записване настройките за Twitter" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Настройките за Twitter са запазени." @@ -3222,18 +3771,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Резултат от командата" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Командата е изпълнена" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Грешка при изпълнение на командата" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "За съжаление тази команда все още не се поддържа." @@ -3243,90 +3793,112 @@ msgid "Subscriptions: %1$s\n" msgstr "Абонаменти: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Потребителят няма последна бележка" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Пълно име: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Относно: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Прякото съобщение до %s е изпратено." -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Уточнете името на потребителя, за когото се абонирате." -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Абонирани сте за %s." -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Уточнете името на потребителя, от когото се отписвате." -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Отписани сте от %s." #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Уведомлението е изключено." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Уведомлението е включено." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." @@ -3334,11 +3906,11 @@ msgstr "Грешка при включване на уведомлението." msgid "Commands:\n" msgstr "Команди:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Грешка при вмъкване на съобщението." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." @@ -3353,7 +3925,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Ново лично съобщение от %s" @@ -3367,7 +3939,7 @@ msgstr "" "%1$s (%2$s) ви изпрати лично съобщение:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Само потребителят може да отваря собствената си кутия." @@ -3376,31 +3948,39 @@ msgid "This form should automatically submit itself. " msgstr "Тази форма сама ще се изпрати автоматично." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Любими" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Любими бележки на %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Входящи" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Получените от вас съобщения" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Изходящи" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Изпратените от вас съобщения" @@ -3413,14 +3993,19 @@ msgid "Twitter integration options" msgstr "Настройки за интеграция с Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "До" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Грешка при обработка на съобщението" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s и приятели, страница %d" @@ -3430,21 +4015,31 @@ msgid "You can upload your personal avatar." msgstr "Можете да качите личен аватар тук." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Настройки за аватар" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Изрязване" @@ -3462,35 +4057,44 @@ msgid "There was a problem with your session token. " msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Няма такава бележка." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Неподдържан вид файл" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Не е указан профил." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Не е открит профил с такъв идентификатор." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Блокиране на потребителя" @@ -3498,11 +4102,11 @@ msgstr "Блокиране на потребителя" msgid "Are you sure you want to block this user? " msgstr "Наистина ли искате да блокирате този потребител? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Вече сте блокирали този потребител." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." @@ -3519,38 +4123,56 @@ msgstr "Ще изтриете напълно бележката. " msgid "Add to favorites" msgstr "Добавяне към любимите" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "За да създавате група, трябва да сте влезли." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Няма псевдоним." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Няма такава група." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3562,15 +4184,16 @@ msgstr "" "между тях." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Настройките са запазени." @@ -3589,7 +4212,8 @@ msgstr "Нов адрес на е-поща за публикщуване в %s" msgid "Send me email when someone " msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3605,7 +4229,7 @@ msgstr "" "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " "от %s, трябва да го одобрите." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3619,52 +4243,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропускане" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Няма съдържание!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Страниране" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "След" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Преди" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Благодарим ви, че поканихте приятели да ползват %s!" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Изпратени са покани до следните хора:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "\"Побутване\" от %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Емисия с приятелите на %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Изпращане на покани" @@ -3708,13 +4347,15 @@ msgstr "" msgid "Sync preferences" msgstr "Синхронизиране на настройките" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Нелюбимо" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярни бележки" @@ -3728,7 +4369,8 @@ msgid "The most popular notices on the site right now." msgstr "Най-популярните бележки в момента в сайта." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Избрани потребители" @@ -3742,15 +4384,17 @@ msgstr "Избрани потребители, страница %d" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Потребителят е забранил да се абонирате за него." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Липсва ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Лого на групата" @@ -3758,11 +4402,13 @@ msgstr "Лого на групата" msgid "You can upload a logo image for your group." msgstr "Може да качите лого за групата ви." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Лотого е обновено." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." @@ -3781,7 +4427,8 @@ msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -3796,6 +4443,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Създаване на нова група" @@ -3805,7 +4453,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Търсене на групи" @@ -3828,20 +4476,20 @@ msgstr "Изпращане на бележките по Jabber/GTalk " msgid "A confirmation code was sent " msgstr "Няма код за потвърждение." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "За да се присъедините към група, трябва да сте влезли." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Вече членувате в тази група." -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s се присъедини към групата %s" @@ -3850,15 +4498,18 @@ msgstr "%s се присъедини към групата %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Няма такава група" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Не членувате в тази група." @@ -3867,22 +4518,26 @@ msgstr "Не членувате в тази група." msgid "You may not leave a group while you are its administrator." msgstr "Не може да изтривате бележки на друг потребител." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Грешка при обновяване записа на потребител." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3894,15 +4549,17 @@ msgstr "" msgid "New group" msgstr "Нова група" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Използвайте тази бланка за създаване на нова група." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Грешка при създаване на групата." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при създаване на нов абонамент." @@ -3916,12 +4573,15 @@ msgstr "Това е твърде дълго. " msgid "Don't send a message to yourself; " msgstr "Не може да изпращате съобщения до този потребител." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Бележки" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Грешка в Ajax" @@ -3938,7 +4598,7 @@ msgstr "Побутването е изпратено" msgid "Nudge sent!" msgstr "Побутването е изпратено!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Влизане с OpenID" @@ -3964,11 +4624,13 @@ msgstr "Автоматично съкращаване на адреси" msgid "Service" msgstr "Услуга" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Услуга за автоматично съкращаване, която да се ползва." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." @@ -3976,17 +4638,18 @@ msgstr "Услугата за съкращаване е твърде дълга msgid "Change your password." msgstr "Смяна на паролата." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Паролата е записана." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Това не е правилен адрес на е-поща." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3996,11 +4659,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Данни на профила" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4013,20 +4677,25 @@ msgstr "" "ботове)." #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Неправилен етикет: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Грешка при запазване етикетите." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Общ поток, страница %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Грешка при изтегляне на общия поток" @@ -4047,11 +4716,13 @@ msgstr "Емисия на общия поток" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4107,7 +4778,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Отговори на %s, страница %d" @@ -4117,51 +4789,72 @@ msgstr "Отговори на %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на групата" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Бележки" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Членове" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всички членове" @@ -4177,7 +4870,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Само подателят и получателят могат да четат това съобщение." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, страница %d" @@ -4188,30 +4881,37 @@ msgid "'s profile" msgstr "Профил на " #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Потребителски профил" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Снимка" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Потребителски действия" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Изпращате на пряко съобщение до този потребител." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Съобщение" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Всички абонати" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Всички групи" @@ -4237,7 +4937,7 @@ msgstr "Изпращане на бележките по Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Очаква се потвърждение за този телефонен номер." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Мобилен оператор" @@ -4300,16 +5000,17 @@ msgstr "Хора, чийто бележки %s чете." msgid "These are the people whose " msgstr "Това са хората, които четат бележките на %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Бележки с етикет %s, страница %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4334,7 +5035,7 @@ msgstr "Етикети" msgid "Tag user" msgstr "Етикети" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4344,16 +5045,16 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4361,20 +5062,23 @@ msgstr "" msgid "No such tag." msgstr "Няма такъв етикет." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Бележки с етикет %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не е открито." @@ -4385,15 +5089,16 @@ msgstr "" "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " "там." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Име в Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Парола за Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Приятели от Twitter" @@ -4406,153 +5111,162 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Грешка при запазване на потребител." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Сървърът не е върнал адрес на профила." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Не е открита бележка с такъв идентификатор." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Отписване" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Групи на %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Групи на %s, страница %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Качване на аватар" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Друго" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Други настройки" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Сметка" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Свързване към моментни съобщения, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Влизане с OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Помощ" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Всички " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "лиценз." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Блокиране на потребителя" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блокиране" @@ -4566,12 +5280,15 @@ msgstr "%s любими бележки" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Създаване на нова сметка" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Публикувано" @@ -4591,53 +5308,59 @@ msgstr "Филтриране на етикетите" msgid "All" msgstr "Всички" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Етикет" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Изберете етикет за конкретизиране" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опишете групата или темата й в до 140 букви" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" +msgstr "" +"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактиране настройките на групата %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Лого" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавяне или редактиране логото на %s" @@ -4668,11 +5391,11 @@ msgstr "Присъединяване" msgid "Leave" msgstr "Напускане" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Вход с име и парола" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Създаване на нова сметка" @@ -4694,17 +5417,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s вече получава бележките ви в %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Местоположение: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Лична страница: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4713,7 +5436,7 @@ msgstr "" "Биография: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Побутнати сте от %s" @@ -4728,39 +5451,47 @@ msgstr "%1$s (%2$s) се чуди с какво се занимавате нап msgid "%1$s just added your notice from %2$s" msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "От" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Изпращане на пряко съобщеие" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Изпращане на бележка" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Налични знаци" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "в отговор на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Изтриване на бележката" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Изтриване" @@ -4781,27 +5512,29 @@ msgstr "Побутване на този потребител" msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(няма)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Общ поток" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Скорошни етикети" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Избрано" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярно" @@ -4817,31 +5550,33 @@ msgstr "Търсене на групи в сайта" msgid "Untitled section" msgstr "Неозаглавен раздел" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Абонаменти на %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Абонирани за %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Групи, в които участва %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Потребителят ви е блокирал." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Абониране за този потребител" @@ -4854,10 +5589,11 @@ msgid "Top posters" msgstr "Най-често пишещи" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Разблокиране на този потребител" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Разблокиране" @@ -4865,6 +5601,2051 @@ msgstr "Разблокиране" msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и приятели" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Можете да качите личен аватар тук." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарът е обновен." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Изпращане на писмо при ново лично съобщение." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Може да качите лого за групата ви." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Изберете квадратна област от изображението за аватар" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог на %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Грешка при изпращане на прякото съобщение" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Търсене на \"%s\" в потока" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"За по-голяма сигурност, моля въведете отново потребителското си име и парола " +"при промяна на настройките." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Емисия на общия поток" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Емисия на общия поток" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Емисия на общия поток" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Създаване" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профил на групата" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профил на " + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Изходяща кутия за %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Настройки на профила" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " +"Проверете съобщенията (или папката за спам) за кода и указанията за " +"използването му." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Няма такъв потребител" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " +"там." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Търсене за хора или бележки" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Свързване към моментни съобщения, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Побутване" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " +"име и парола." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s вече получава бележките ви в %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"С уважение,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Търсене" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Няма такъв документ." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Списък с потребителите в тази група." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Списък с потребителите в тази група." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Потребителски профил" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и приятели, страница %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Списък с потребителите в тази група." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Разблокиране на този потребител" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код за потвърждение" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Грешка при изтриване на бележката." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неправилен етикет: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Грешка при отбелязване като любима." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нова бележка" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нова бележка" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неправилен псевдоним." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Не е указан профил." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Потребителят ви е блокирал." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не членувате в тази група." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокиране на потребителя" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "За да създавате група, трябва да сте влезли." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Грешка при обновяване на потребителя." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Грешка при записване настройките за Twitter" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройките са запазени." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "За да редактирате групата, трябва да сте й администратор." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Няма резултати" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Потребителят ви е блокирал." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Съобщение" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Грешка при запазване на профила." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " +"същ акаунт. От тук се управляват съответните OpenID." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки на профила" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте забравили или загубили паролата си, може да получите нова на е-" +"пощата, въведена в профила ви." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Разпознати сте. Въведете паролата си по-долу. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Поискано е възстановяване на парола" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка в кода за потвърждение." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Абониране за този потребител" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любими бележки на %s, страница %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Няма такъв потребител" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Бележки с етикет %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s вече получава бележките ви в %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Тази бележка вече е отбелязана като любима!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Тази бележка не е отбелязана като любима!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Грешка при изтегляне на общия поток" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Не е указан получател." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Не са открити бележки." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Реплики на %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "лиценз." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Абонаменти на %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки на профила" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не членувате в тази група." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблем при записване на бележката." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Съобщение до %1$s в %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Потребителски профил" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профил" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Качване" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Смяна на паролата" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Свързване" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Търсене" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Списък" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокиране" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Блокиране на потребителя" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавяне или редактиране логото на %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Няма съдържание!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Потребител" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Търсене" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Адресът на личната страница не е правилен URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Няма такъв етикет." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Преки съобщения до %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Твърде дълго. Може да е най-много 140 знака." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вече членувате в тази група." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не членувате в тази група." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи на %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Групи, в които участва %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Търсене на групи в сайта" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Форматът на файла с изображението не се поддържа." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Снимка" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Потребителят, когото проследявате, не съществува. " + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Забранено." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната версия на протокола OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Няма такава бележка." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Няма такава бележка." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всички бележки, намерени с \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете себе си и интересите си в до 140 букви" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете себе си и интересите си в до 140 букви" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилен адрес на профил (няма YADIS документ)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не е получен token за одобрение." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Съобщение до %1$s в %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Емисия с бележки на %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Бележки" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Грешка при четене адреса на аватара '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Грешен вид изображение за '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Грешка при пренасочване към сървър: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Лиценз на програмата StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Грешка при обновяване на потребител с потвърден email адрес." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Побутването е изпратено" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Отговаряне на тази бележка" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблем при записване на бележката." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Няма код за потвърждение." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Влизане в сайта" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Изберете оператор" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете групата или темата й в до 140 букви" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете групата или темата й в до 140 букви" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Емисия с бележки на %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s отбеляза бележката ви като любима" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " от " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Грешка при изтриване на любима бележка." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Изтриване на бележката" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Командата все още не се поддържа." @@ -4885,9 +7666,6 @@ msgstr "Отписване от този потребител" #~ msgid "Showing recently popular notices" #~ msgstr "Търсене в съдържанието на бележките" -#~ msgid "List" -#~ msgstr "Списък" - #~ msgid "Icons" #~ msgstr "Икони" diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo index aadf38da9892a697549dc353a73e23c97e03266a..c3a36098bed7fd5048324a41f7d06022b0dfd144 100644 GIT binary patch delta 29248 zcmb8%37k&l4 zKDJ1aw5L)MX_F{vp{V>`@B6y+@!7ur$NxMY*F3N7oO7LPJLmT4``x!H`q-u-fs^H< zR(m))MR`2&SgMxCvnAT&`J=mXJ)X_Cc|5WB6qd!8F%jRxA$S=FV4sm5PZ11a349n^ z;8R!cH+~l@VRV|uQxvOV64tiq{#cp&dxjAyN5NF&;XQM)3~oR@`8KS8hcF(G zqv~I_`NhVY{CF%zep^&|H&nw@F$S}+I0mphE=4c*_pBpQ1@|Id;`zu{_!V`bViU{> zai|M4LN%}zs)0RG^+uy^n2qZ4CFsRfHh%}IN8Ul*=W7h8VpKZgj^$A4>ZmcSj~de! zSP$D{TbzKIxZakR@R@WBYKZ1zK0bpxu+~J6rvN|3%Q$e7$I}seO{V{A6Inc&i{obO zgY77B(V&KVh8*j@5Sm<8BTl}H7DxP>RLDo8(|=m z{`V5uN`|`TEmYThiP0F5WxBi=swc{$CQ}?nVgi=HMAZ3BQFEo2P2YwZnp|vx3vmWM zkG-*eAlqCp4;zy)8+GH&s2gsx=^dyW?Z$?92-Sd}FbXf(@~fyJERtiEYkAbtdB|4 zO#V>pLwY*4!Trb(2Ry$M(UX?RGcB%UO|-T|O}?JE3bT-Fdm{X%C;X@$+km>xCM=Fy zQ9bk`YVPbpFCMq$S20@aKRVysxFo7#HB?u($MV<fz0hP6dqxF5F0$v6x* zqPFN?QRnxbZF*ubssR}oi+5lJT#u^vymjYn`o9zzFO$&}-$pN9Lv^utj_Klds0$6Z z=`7TwU4mZRhIR2BR1aRlYFK5i$I}d3pvotqu6rM96>OeM|7+I1L59Zg0(!C7JTt57 zqi!_Nrt?uZSc6q@H)VY;ZqL%H)=6D7*NvhGX z6zpXiI1{UrUWaPdb<-6(c}*}&SO>feegpN<-WHCP#+vFX68MCy_8G3p6C z3(aJzj!HMjnm8CWDRWV)Vg{;b?#A%swfP57WBeg%oqvYfpeipi_o;^3z`CPX>pzD` z0vY$C*6ntzfqPI5_!M>H->@`ZLp7lE?WQNZs12zDs%tZB{z}xwv<)@4j-q-rYO&cN zTVXw||87JyDW;&hXfdjbAGG-|pvLNL)H3@9i{T%rCy&0vjBPAxC>x=!mx{G83;W{z zsO9)6>Osz974Gl3LPUFZg*(j+YGO3$mZ*yDQR}x4hQ|~&`KF`h$_mu7-GjQ}n>POf zs^L}dGLyO)YV1?3Q!t<>T}VV-z8=-`J*W$PgqpR#qw1AeV#*t!F4O~+KN8ij8K@py zZOfms`TMOWQ9bqt>VeBFrT-&|R9$K^YM?4KK+TB`s3#bM>iX%Zp1BuQZzUGT$FUf0 zL-kZ4>byg!WqlGgi7%rbEcR|=ySwRsJ;`V?^aT0n#g*0&s{8{~7oS7*)K%0IRK3UC zs4nV8ovgQDL(;i84%gu%{1er~zI)B82n2`}Cu1?z#rv=n?!X8s3$*;niHR6 zDf|IT;8mMnWSPmYh(*XxKs780)dO8^It}$;f!Rd#WGgTVA3=5H6Q~P6Yx8&6{C%ip zc^K7zudy`#gkJRAXBwV>I=>E<#3rZ*X^#_dFeYpLzd+mLN#DN>Pg?z27dt;_TKpX920Kts_zG6UBbbDzP#aINHD<`_U>VYFP?PQ^tdB#nBhE$5 zfnC@LkE0q~^db6RPn1Y2)Dz9D?J$mXH&pp3jKvIWgA1`O?m|7uFIX1i*P6M~2&<6p zhHBVIR0F2q61*GhVuipu^Of2TYm?ClwI7Vf1k6MY$$hAXJcN3}CvAE=s@^_qji<31 z#;rF)*b>zfolvV|GWI|hD`DVcB6@-!P-9m4VY7adP-EK=H54hR9_fr4iV>(M&c^CE zA9cZXs0MFGUGF99yI6tr7pU_tAwwJR6xm?jW~H$l1xct2v_*AMPt=oVqIzZ)mdD#| z{sXAV^%&~>LpFU3)!-|rhE?2XhNOYDJH~4Lk0PS3$w#$#1FDOkM>S**YBd~2-S|D! z6Mtomc*H!B7xjcqQP=5#>baY(>8QDohid3TEX(~pD~ad{AH~Y}EUJqS+5Atf-=Z$~ zt2OdbGn->jUD^q?-Up%@nu==3MAY?WqOQLT+b=f(riqVgmie6N` zj;Q=pY>e5co?C}~@ilCO1-Kpe}d@^@NvE4KA_C+@OxND{A?T!J0S&Yhlp33pKYs+eH6sETf(yM* z>@L(?2x2lmjy3Qow!ojTA=cY$dL|V$wzr{rBnNf=BGiqRqZc2t?nc!+fvOj{KtwnG z!&>SobEA0FkPN|MI1cp$88$x$)g$w<2;OVcE^4QI1odD$Q4KkWy3f0)>wS*(wEoZ9 zf|#exPL_amsn8wObyH9~+8opcf~c;35_RL3P&Yh?YS3rab2k5X)D2^{nCn%=MA8j0 zN$Y3K z#cimDyo9>nYZy>V-X@}DbQ-lzuUe}-XD-kZ%aY#<^<+0=GUgy-=y@26;~`W--nE`U zUH4m5LnEFy*DHZqJ=LD4|J9=QWT;{f)RT`vwQxG>hVxJtegJjDM^UTc2$sWZsQTr$ zn>i4R+Nct-6L!IA7(g}TqAmY@JN>U4R1BFD8>1#yd(>PQin_tAsAZO6^XH?wdND?# zi>enyEvwBoy#uw6970|91Sa6m7=@JrFPN5B#qwk%V1I0Z_u@j-iDh;$u9%2@aU4d(333k5x$bK&^(+Hh&W8#*45rZbqHA56fx&A0eWa zeu}Yp1}ot;RM%J9Yo4e!s>|D;>h-~ROhZk=`KX32LN#D1YIV7&9$1G1@ev$=KVqON zkxnm}8;n4uvr#83MK$a`Y=948Z9Irccoyqo`F$q8EozKMqaI)d*2E`K=e>rSE9bBp zmf27LtLq!=Hx>J14bqud9q&Qi;3;f|@1n{hUp7Ni%Q_Ha$e)ecnC?Xl;cje<=WKr5 z0aM-^l|SP^z&!CLGFpu$l<-%+vA>)3Tqi3+ZNWny&YwCfP$+3ky+0 za2&n(JF4fZzGcb>V{g)aEQWhfv;H7P;0aWNPvHrz|8j4e3w)2$D5(98*$-A@KhhUa zld%1}W}V-JWl0aRj>U4MbF2$cL%0Ifb5Gm+L#WAp%%*?B@b`b@duH-fLv>YSjKon` z0moqq=A(Mz32cS0pvLkFYI3%F-@Kf%up{Z!)}yHPA9K{awp(LS(xWgYKqQ@rcC6{B zb$t)2<&U9SybsIZag4#U=*6p;iSZwphAl<))Dx)lwqq%L3oGJr)b%f51uXg@{jagC zMx->h!*bXgb;A*ufRoXScVk`Lg1W)`s3-d#8)1cyO#Locg!Fj)1~X9g2Ol%npNeYe z++&Qtx^M{@b?`8H@q5%HD)X_q;Vsyn^nBFDvM^~6ZjD#`tX{#OsIBBLgTP(5)JHOWq+Zg3H`A^n9(7=PS6X-^zSdJ^h_hfy~; zkGi4rsaX|qs2=Tr)vzD7!bt%lYQV!7hkLO;9>Xf=utqc)tD+iE1J$q&sL9$NZ^k(| z9N$OvMABzwG7iG3q-S6QT!|^T7uDdv1skbw(zLiWYAgp~J)Daz@o`j(k7GZKIb}Yr zMq@+L>u@L@Mm<2a&pn<6*b|%JAsm30Q1yG94i9m_lS@QnzZ1LSNmR?cUzoYj1JwW@ z>dDsH`~#>PeTnyA=`YQBYp@#Wy{Pg}upLHzWzO$}8bV(<9pLRoL^s%BE1W|;dHJvT z#|CVNUVH&n??Y^XC7Ie9qAsW*8G)5C18d*{?2H>wbLbS7$MdM3yoU3*zo*q1#t&aW zt?#Da8oQxR7>1fulThn+F6xH&+wzU5^FpZQd(fso!Xl)m%R>G~QdIxa0!~dFwYIwpq)6f>E9_xYk;4EwO zdDedv87t14$@c)Ni??A({0i0bA5pWm%J*gr`&y@A8}c8-ruZJth~P!@gIP_pe>C~4 zupi|ItuYr({^*PJey72d?3&;LyZk&R3N%ulsFbg%g zrlaP{Je$53HAh@*iED5mzJm{9jZ3Dy5XWcC7W?^5_hj0MKTroX17By%5sAaeolW-T_i(ld>%)P1)AIASJBK^s@`wuoDJZ4?- zr+Jz5`^z{Dn^GRcMtB%&;IF72ta!~lSqhdS-5S+XJy1P0z&Z>|lOBn&0U{ZS;6jYU zHK@rF!nSx2N8mN<2#*tH4H$quNzcQI_zG6QkFhzP$5!Z#G}pZaHAFd) zP9Xfg4w8{d#$Hqx$3!{d$<__^)G1>`tX+zYFnxT5Gmraku)}-_Caomb` z;E*Ctcv2oi4Nd8y0Vn)Zsd7;#yy1AUI0cPRv$vHs6SaIEwdLDUJ+ucC@dMP5UBQ}I zs+dVPLS3&D*2dnbC(lH!rd0tV>bl+75S`+t%NwJ1z*|vWn2tK}LF|b8QS19Jn_snr znG@Ym`F*h}PDJ(4LR62ew&icx{J>cv8rwfnV_mnT6W#}gpq@A#^+froE?$M2T-#7j zwiET_ub^)DA!-i%h+d2?<%IYCx;TjRNPK}UdJD2j0-kYY9Zv!US=bDhTMwX~_*c{g ztCtI(;Aw_Rcg7w#4ApaMunHcuoPB0v$IweUvVu9k4knZCZ=Hi$o=>B0cpNpki&Zp3+7|0_e@_+>O`=uU z0(YT?;sR>ys#Y=$Nk%nf3aY1;VK>~58r#UqrbpVN=EwrngS~`$uy0TsS5&NNXbJ|D zF^-5_X5EF_lFy(QcQ65+p4ktl`)SDFK)EHj5m?~!rCC-EXO=lSIJ8Vo89Ay7Wa<%TJ)5%u~Y&|7UcG816dMGMk1P%iB>el}Avselw~eFQb<0 z2dL}(f*RVmnr1TgLd}`!sCt2&MD#?TSYy0qne;(5DBY%)U@Ym!P;b56sD>OzHQ+Z? zkHjRHW!Di^ejBQMCTbb3K=t@mq=5m?J496R7u1Ez*D@_nK~=mNHFmR5ug&GCE?keg z@OCVUZ=hDqQPjHs3w6V4wM}^|)DU$-&5dzkS$`Qs)U|o2hAc)s>7&+N*7vR7pe0&tVkqNA=i2oBkBF%05Re$BU?*yo>>z7+ud?uo9|50;=WptX)t~JOb5_ zTvU%OLDhc>{N|3EFz*HQQT8P&kZB-X#)ZgENGh67NOZX)W0yHV@^ z1m%QnnO(+I35=VS-(UzWJW{t083D-V`IaBh;Xo%V;dZK3cRBVb%ur2OH4Z+W->s&>xlEzK#mlVE4Is>(D zB&C>lM4$-~jdd1o!#h!3)v}qX*bCL50jRN^i<*3QqUx^-LO<^Gs#+@Hjp&b6W@;N z@)f8JWetY+4V&JDTGp?iu6NR!(8ly=I)?xEe^(JIJcc?UgzBQVQ7t}&NAMcz?RccE z`HpwmnaLH6YCtk-(zV7?IL0~^HFPsk*Ik4f8W#gyh`dfjJ64JI=0bI_G3mxQ97p0X zd>+-MMLL+-Tn)84x?lv3LG@%BYOE*O^699_y9zbecA@Tfv;*s3k?+aS2}L`a3sy!o zpatq{c06is%ty_QRj4O;64hg$p@!r))SM~O$)ua2p1c$4`n_%X7Sx%{ukm@Xqj z>-1Ul;>V~P|BhOol{y>SqSo(d)LdDBYS?~Mmw#ma5_RJrQFG!7>g80vi+Qk)sQXS0 z5Yc*GW_=pfBd?*l`ZVeSmrz|-rmHEhhwA#SsD_V4FD|k9Pht2v*3+n-x{BIyD|a)i zCD4~hBpIVn6~XA24AEjqd%k3)af~C8guJ4K}pK1-D#@@wb+==Rm zZ;>Gmcq;TTUD6dbCON3FT8p~z(>A>iwMyPbjrB?EdDIQBpw@kvp2kY3msY&BIjUY? z>zJ?s-upJ=PE?mYWPQQwg1k?tFo2X!K1C zE%*17BBCy-gSx;VRM(D2t?PVL%ja2Fpn7H#>IS<|=e>t|t9@lH-rEWP<5n`ZCO->x z<4vfc-HHKCt~ZIOOTWSr_!Fw7f1+low~yI4x}oZ&+H@MKA$h3fco*t=dr=Ml5Ou?o zs8#YcYG|*b9>bZANlkm9pGHMP~9AeJvk2)`qN<hYZnth}W>bjj#lk!&Vfb&p2xC`mwfaiN6y3r+Tu~gF&RZ&}LN7M~(LJh%a z)K+^pYOVxr`Bv1B9YDS1-awsy0_);8sEw%fFteJPV==w|Zz7_NWw3P|b|IaM+4wx_ zLf+wKe`tW(DSM#0aI8&dqv|b1J-KV$YV!}G9^@U=j{7ynYyF=kq8=!6vuSx1)Q3lX z)Yt3~tdF^?!Po`*AT|L+uBPZ*ju^XLv#EMY`0jraTo@{xJr0p>sCl zCsaCmgxMfUq1JOFYY$ZUC|f=OwQ=2!dN*uCUHAxU!}<*C;ziWzsB)VrpNtxcIk&O? z^<=4%tX`;d!m-pWNe2Uu?v2R+K}SMn&sOc zTaq4v-S95d^^c(L_ep?=y5djNtgb!ItlOs8nDhXfo`ag*52Bvv5mfzWQIl;CYA$?e z%g>`$#})Kq*);QZZHl_zDAe@=i->4zy$3aRLDXt^8a11D;Vt+o-iq<#&6pRU#&#pB zM_xnigx{eWcmbQ^pQyKL$^veJR6C$AmdHc4(6nruC9qmq&uVL$Yh(p z616(ETaVlF2%q^kqDGja`lzmd2vz@G)X@Bf+F_F>YEH2J#u8~m#tiFosIfh3O_*fT zBTy%YMY-#x)<+GwV_LyRBd1 zO{7cuS^uh#>Nh_$rlBU^Yv{#e=-_XtC%J-OW0QQdKU69(-iAZS-(bCnn#|p&n;r9J z)Uq3cnw(jv4QkHxfGJo`hIX)rF#&hk3MWwO^hea*U2%pP`v#~B4nTGJDAb<58g-pD zsAaYTH5oreO}^4I&38jb>_<8fAkvt~8>kK9cWZ}PW~>9&LezS{fZ757KuyBf*~WIL zhL1)q%K)keoYMOB)IPBW)l)|?ph%lL%&c8+ z-HGa=4^flmEVjq8cbXpQXPt~%1$Ur^U=^wX2T(Wq2GwBiU1p!S+4>af0spv*_0J^m z)LCMd$7EEGJcv56%2LNO4hN!kuxG8uQL{h#ZetRvq5V+HZyIWcTZWp{N3bSd!ep#` zkHi0J%4_@{CW|iQ+-t_T4(drdpgyUlpj!GA>IUywFXJH6)t8z2S*Xdl7MJ0hs3E)U zK69O!)wqKChnkEpqt@?xs7Z7lZ^s7r8@Hi`pxFvD#$8d% zw?AsXxYee8sMq;4o1SCSfxB#Eg)LZ%`Y?DB^|E=+`YlG0_O3KvOo^x)w?a+Qo;E)f z)qr%=9LhyqZ!vmt8ES~OAq@<8ju3Ikm=nPtj@H~IDw3VermJ9QRj`MT^mfX1=;gD_ z#&-~3O#A_yLj6YwJxN!$<^4IY86k@6(`lZXgw2u6w(?Z?nS$#_ODgoDP{&tzE1siH zIqIw@or`U**Qf4!;yuaVM?H0Uh;%mLUe2jZd5&#>dh12Q?$^wxr~qtbHnHWAmMy+Fqf@~EEiZyy(ftKwA<**XDb=!s8EZG-gqRD_cGyaDsQ7;KJmtc zX4G#%-AL3?mOLGuNb^q#`agmVAKUr+7GVhG>}j6cDSwoZY>GYKtA#V|$-k4S-Acz& zDorI^KOQG?6X}<2hM)KYw)`6BKTW(VWls_xYx7lg3hAz-BkY6KAwI*Ff5N>3bxC|_ zGfGogYxVl1Y-RIxp|w=jv6woMT&yhVvRE8Tkk_4{qbcbPgx^U!oc})ZfgC>O^Y;l` zZy5325#iC{-|WeZ=3YOcF<}v5Cnukxj5pEW$0s)SD&AqQ@jceEb<(+p zjui50lh@2X(2JVBIvP;W3*W+{*q=%fgf^u2aWZ?iCzkj#*nq${oo6HI!<79+{WYYo z5#Ax_xP>wuZ`vE16raDOOWLyMiAQSs9-#CNLTw7ZuormJR%%O2=MdjW<@fOj6?fb#{|L)gfg5Pe*Pb+7$httQ%7qmuEz$P zsCQ{)+@%7J2?V`Q??5vY55^M)6W-xIubAvso{u0>{imZ*z`7h zjVmp~1>~=yPLwTsn0O1qSjy{jUb?;G0qWHy{w4L&h##_DM^(0DLVF7MLgzmP$q%hG~8DD4u2qAv`?Y0swLD}Xw#XL9k=J` z{QBfqByTGlV}-zvlyoBa$bCd-5sp&Y0d=I1UzrP4*>Z3+6tGt`#*$)8GE$3xs8 zgZvIO>}PC2AR0cd5`UKR3d$fpn6QO(0qW>UILWnMzrHalvmS+CU|(CQ5*1Do*N?&) zT&Nal9Vf`^jC|UAis&M!V>0oNP4w@-KT=kTb7Ke@#7}eX?bLgjczfalwK2Xz}_UWc@PPXA`}i{jm+pR(y8_&n(r)ct$@MU#1+i&ZC2$8^FiV4h{yT`uDP&v@r_7(9ZAGO<64(FZ$$iv&mGDsb#rV0Y=;=ewRcgFIdJSQ< z&7XzaD7${tA~K4=KNxv75>67z(4Km9CPp zg%C&cKDC8nFBjgx#p+@t;Un^Hrv9tMb#$~h_~?2AZT`2E#gSL-dVaXJ`BQ|vLxjh| zb@gK6s7B&9GAk2i6CZ>BeoP?$B|;5b_7XRLiTDL9PyS=}gpSys{JL0Z8+aKXq|V#q z<=XRA{WjfyH-%|Ram=T14C&>BW5mBEuR6U_kD%ji^1kCjbx3a@J&pKjf|vLe&e0J~ zx+>*=VLa(rdv1_(U!+cP@`n>V#KX@&hWH2y8{kATV^qko*_v%HT!}h)8Q!|gT!Z1o=n{W^4gJi4WGTfb@V3Dhf1^UMM!#% z5mHHy#Jkz_ zI?9R>no~EHvh(Cuw`F_uPZAv|(D97*HR8#%+#y^)R&l~#g!{SBFZej28Q~zIxvkfT z%C``nCR8LmN|}yX_!uF9Fr9mxz$Xcx5!&h1^*Wgcxo`m)J&8vUmJy$6&JX|XL3tDM zbR4&SPrYvB>&P{D?yzOrkq1z&<25Wvm}cwVgTIpglCng7y8KR9Ot?hoO+j}o##7az zVk6RT6E+aekRC>vjvZKmJhD7<@j*OINF-i}Hy&}+?MnXLgzLx8HWFAsWIGim>Pj4c zQ0W63Uxn*PwxBSak?XRXP${65kv%|Adh z9#oiaD-0xll#}ORG?nX-|C2rGb6cl9Wjbn--|B{W@)daxk>|DbROeZ)^)%_*2_KN& zkK+ky-&T!(TTb|ZjAMk+gmM%_koO1iRN_(i9UjJ=_!?!`kEX<5A%8R`VQC5;A-5#WxQ{X&6-W=Y zC(Jfk;lFp@a85ZIznc2{3GY+4G=4+*WP6Qle3N`X;ZO1%!VfGA&kTFvbB>$cZ$(U6 zcDgrra!$6-n_ZAK-j|o`zSQsL65jl@Nt1l(-bBA!q5tNxS-$N2jGXL@>`C6lW_A3b zE&Yc^j!$e+$Di1e(5jBVM6a}r{K*pwGBam+XXO;+`5To;Y+c8nT%tr{juPD`r)5v_ zg-g7?th9_wZ(4eKp3m?1=Hz*^bMiALW=u%a9lSZY!tYJX_a?S+XAP?EJ~yb6`^%uy z(Meqr{q^0bA$8mj2hZ*_J~L;+R2rC@moqUV)93dj`n~_2*T|cj#$6NBZ!9eE`||v5 zzab9}&+zNk-ZXEPPY>?RndnW+p5>jCms60NtW*B3Fg-0ZBi%b8Co?B6;f8|D41c~a z+$s4vI+adLc25oY*{SEI4XIJNp5I(cZ6j`58hU4F=?Hhyu&lW8X?`AnXU?DO^Y+T~ z`Mjw)6Z2=J<+*ET)r!u~$;nK1j}DvZemJb)|E}9BT-Vzt-)|qq@AXek%k%L!Coi8o zzn^}fPsisJ@*lZKk(pUS1B- z%#1X@w^pLRmYchkF+w}yMm*t&7~YN%JNI9%ch=laq^tH!o>dZ%S;ny9^A zO|@iC_q6OU7Ob&ZY17m4)AGE-hxYe=vEac(KPA)%&v#3B;;u#7F8>7pmP2e0q zv8lf7WOtIUc`@cJ6U?9NF7b_+kWPo?(Zjy*BQP7YGO~P)^JnGy68^qczW1NC{H);# zzHqjHQXXQFcAf%}r0sxBG>eTDBGH zc(+ML6*q56Mg#-&;gqqCTP4$5+73P)rsZ8FbBfzFGv1w*Svn#y-EE&)i)fu;K26B* z2BWpjs_|y#u%#tsG2L#MJw3vcnFZ^c$n?ynW4->g=}b6}Ezu5leLcHtGjA#yo>_Fk zdzpQjg*TP(nlW?jzfC<)kDPEdGn3ttS#!$uD9Fv!CdfX_emKGB-jP+mW_m`xw`+KU zd3q{t_Ykk&m!HpO9NLm~)G1=>hjMZ%IPrtJ_VP|-PfhfDdi^tQ7wUrCLnG6s=j3JN z^F-`+iGFWV*ZiEU`kr1sb|RfO@!!jbrlxvRlAHd2RcS^QxBaw)o3AhM|8aS{{B7xf zx%hup(4|8|r!{okAE(tUo0&5yBikFEdm06I&fKc*=)46LaA+dRLPdv0!D=J&XH>!Z7B6LS;hHz0JaKGm!r zc3Iwb6sXJ9LbLgdoqtc1pLOk?p5Iz?v|7OHI)Q?c<7a7H!gWGZ13e=vO)AJUuSTsB z2B{!BJ=yC%xu|d1a3!xl*EfOpr!U<-zvw~B{iRf|Ot(xGKbJJA&qCk>tufOo{6*uPz%*k%rF+ve z^7M+i{?<cfreriXXmJlYN=Fo>X5rZkKC#JJxrP*|M&e`q{kQsjHI9WriP%DMyo7 zuKA%=tCl(LcdM(H%=Xsm(m0O>&#D!Qec%NrI^8#(kIKVAZ`lcaQ?T^;`U~%5?iaxk zv39L$&EB}8L(LvccS@)6-IJBWOG%R~v}DZ>PTW7=?%`M1-`h`eD1YsOh$8I1`2~LW z!V{Iq9AB)D-|~NdADeIKP^V1^ ze>d;VC#r|WKKYE}ezdu{+bX{%n|Spkk7j9>egmZc{W8A3jOgYZ@3aCYdgd&*_ERlG zrJi~t!s+FHyv6J8+A^w&ULP6?eJGgUIrfvd_|^`U%-6s_KLoU+p zBX1Y8+`4Z+SUV$2zv}eu8eSv+?E~C(LS0L+7uv58w?pWDw^u09T^kzf9t~CIb$vGU zl$-rR8MWQEbp(5yel&$2r68Z5P8qZL!d(19vq<;u!uWXaFm_MA6f?34vcg}{UOyFd z0e0j~g-zY(3akB}l|n}fmqtYS_>K!T-IeLM6L(j1=j`5D)PB^t$$MURyX|S^KDQ@6 z^wyptPKkehlDa$gHi%chd%}%1`;Xtl<{w_sGxOb(dlO63a=o}R(%Y#?5ii|eCMBhD z(`Me3rtMlbZQQg?XyZ$tIPUlRR>XFlp5f2&`tmcT75G@MjB(a@oilI$>!F%2Z;W)4 zUac6q>s40azE>-`Zy&74Z|)d(?ZJud2mA8aZTO|&&8%18FG$PF@UZ=5aDj{oeir8| z8~Hv<({JwK;Zpr5=O$B_<0}sp27{fQ>Ta`372OgSE4$gR#)V!yRNrxH9BNd|@5v2c zI&|W-ArbD**S`(bJ#r$-J^f~)oAvhYP{cb`9XIOTcidU;2Hg_x#Ruy~IK0~4yBz7Z z{;*=G`iHMMyvHVFre(3!efiNXZq%{KZp1tF+^l0M)&8R?`hgd2RbFWQu|l@ZKjYm4 z$C8Tk%Wir`TArtSuv8bPs(bR2lA(#842^d0IN99I_&llh;2eKiUSq${>oYyCpBwsN zrXO$N0#A4M;+qxRieCG|2R3sZFZ`rd-?MQ?)opfy8})oxvzX#!!0=V zkz4cgXG0r4-|Ubm@4kPkrMvCxQlT+l?2T}*e09X#_;sD&sTNLU_m?kY-B-W%g=&AZ z#&Or2sZB_CPn_xF?m6Ri|2)$oxU`ScCV0*3G%Ej}bVhTYr21Y+qG0?1|O#Ud}ZpSx$Vw2t7(62@Jtgk^yN7r zN<_86c{yx(S!wEuNz8+Eu98_VZTc(E_(R{EyUhs($~bX)HBQPa$aOn^f6=Y-LlqlR z+-5(-DukN-u*h+L|DlCD<-*>SuKb4O>xCbfX$%fu51ITp_uRz!9*V;METop`g5g}h z+u_H)p{yVCo#56cPEzRf#bObm;Xkj5a2H*!8v5ba3sLczyy;%qoIN2UE!oqDAFCOf zxxDWEJXYw$mB|sIW&FqH_QO5;uf@SRJ)I0kG`Wv)$fn_XKRdg5BIDEH^{6@%YI zI%9%cqMi6)k0@tvt%2Gu^tAkQKyG*$@`J1(KY`CjTToaw+PTXKE-m7`6MVR+Q#9DE zs8d<7s=-@}IunD%iaDi%D~mc6g8Pa(Il+p>ob|!gMV)fNCyF^2gSQuV4g~iWcjAIg zOE{lY9?06(Kaz#VBRBj-l$M?rELPG<491moD*pYaMzDHG?(lDaikEcim@3UnI{n-R z*SZJim*fVGN;zHJ(dQF`D@r+43Ky4hhD8=`E9)F`3hTr;9i8AaG0qEx{Auh&^~%Z5 z34T)Ec`P`#f-^q&aRr+8as{V*pYXEv41Q&oKGV!kNe$D)%z~Nh2me2E3!^GJuR7(J zGuOY=!h;@st&-C$*teBaH~4!c=W_Vb+_KlI1%IsU3<%bVb>@YKKln(j^FlBt&RJPF zsERYp@pkv+P0(5v;U96l$-=ENS$V-n8s#-X#hI7;j4);27g|)qoKO$JFh*P`pfm+V_ zh~VAK%HX0zXM6B!qO&GAs;<*JxHZvfUHEuiXRTAXu%5HjDa=Z8);NXF*LTWA6^?1_ zyc!YAY~s`iRxRd~Ead;e!N*Q;e~J?C6lcZt2`!_*_e;SVVAbYsRBj z8^;^$)W&HV97xQ4@4c#SnfDtMk{Ino4=$LJmKRKE=hQ5Gy{)s@3HEC5bPcApckZY% zT)!Q(g?sbsO-}pgP90p`*{S(IOAEhh@A#c6|8s{Zb1go2OGoG3U_>V;y##}4Uk0NlOoAYi&a6m67 zrf^qJ=P737O->1??B5%l*$9G-dpjq2ZN?RD?Cm75+Sm!}Xp#TtmhrFaG`PQy)2KrD VcSbtf7Vks9PD}I$&-HPJ{XdOWc)NlLdPGSg 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 diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 44944c8ba8..1df50f70d1 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-12 09:18+0000\n" "Last-Translator: animarval \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Cerca \"%s\" al flux" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr " de " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Notificacions contestant a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -83,8 +85,8 @@ msgstr "" "que conegueu i gent que us interessi.\n" "\n" "Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " -"vostra vida a la xarxa amb gent que conegueu. És també força bo per " -"conèixer nova gent amb qui compartir els vostres interessos.\n" +"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " +"nova gent amb qui compartir els vostres interessos.\n" "\n" "%1$s said:\n" "\n" @@ -99,11 +101,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ara està escoltant els teus avisos a %2$s." @@ -126,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "estat de %1$s a %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Flux públic de %s" @@ -154,34 +161,48 @@ msgstr "Flux públic de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s i amics" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s línia temporal pública" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s estat" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s línia temporal" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +210,8 @@ msgstr "" "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " "instruccions sobre com confirmar la teva direcció de correu electrònic.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +220,8 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." @@ -211,32 +234,36 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lletres en minúscula o números, sense signes de puntuació o espais" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o més caràcters" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o més caràcters, i no te n'oblidis!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o més caràcters. Requerit." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +273,7 @@ msgstr "" "has afegit. Has d'acceptar que %s et pugui enviar missatges." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +309,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "No s'ha trobat el mètode API!" @@ -304,16 +359,23 @@ msgstr "No s'ha trobat el mètode API!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Mètode API en construcció." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Acceptar" @@ -324,6 +386,9 @@ msgstr "Acceptar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Afegir" @@ -341,27 +406,29 @@ msgstr "Afegir o eliminar OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adreça" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direccions d'amic per convidar (una per línia)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Totes les subscripcions" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Totes les actualitzacions per a %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " @@ -371,32 +438,39 @@ msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ja estàs connectat." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Ja estàs subscrit!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "N'estàs segur que vols eliminar aquesta notificació?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoritzar subscripció" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " "compartits!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -406,15 +480,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualitzat." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -425,6 +503,7 @@ msgstr "" "llista d'amics?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -433,7 +512,7 @@ msgstr "" "carpeta de spam!) per al missatge amb les instruccions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Esperant confirmació per aquest número de telèfon." @@ -444,6 +523,8 @@ msgstr "Anterior »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografia" @@ -451,16 +532,18 @@ msgstr "Biografia" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografia és massa llarga (màx. 140 caràcters)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No es pot esborrar la notificació." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "No es pot llegir l'URL de l'avatar '%s'" @@ -468,6 +551,8 @@ msgstr "No es pot llegir l'URL de l'avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "No es pot guardar la nova contrasenya." @@ -475,31 +560,34 @@ msgstr "No es pot guardar la nova contrasenya." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancel·lar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossible crear una instància de l'objecte OpenID" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossible normalitzar aquest Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "No es pot normalitzar aquesta direcció de correu electrònic" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Canviar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Canviar correu electrònic" @@ -509,11 +597,12 @@ msgid "Change password" msgstr "Canviar contrasenya" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Canviar la teva contrasenya" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Canviar les preferències del teu perfil" @@ -523,6 +612,9 @@ msgstr "Canviar les preferències del teu perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -535,12 +627,14 @@ msgstr "Confirmar adreça" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmació cancel·lada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Codi de confirmació" @@ -549,7 +643,8 @@ msgstr "Codi de confirmació" msgid "Confirmation code not found." msgstr "Codi de confirmació no trobat. " -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -574,28 +669,31 @@ msgstr "" "publicar les notificacions a través de missatgeria instantània.\n" "* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " "comparteixi els teus interessos. \n" -"* Actualitzar les [preferències del teu " -"perfil](%%%%action.profilesettings%%%%) per explicar als demés més sobre tu. " -"* Llegir els [documents de la xarxa](%%%%doc.help%%%%) per conèixer les " -"característiques del nostre servei. \n" +"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" +"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" +"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" "\n" "Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connectar-se" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connectar-se a un compte existent" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Posar-se en contacte" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "No s'ha pogut crear el formulari OpenID: %s" @@ -603,36 +701,40 @@ msgstr "No s'ha pogut crear el formulari OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" "No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "No s'ha pogut redirigir al servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "No s'ha pogut guardar la informació de l'avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "No s'ha pogut guardar la informació del nou perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "No pots subscriure a un altre a tu mateix." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No pots subscriure." @@ -652,15 +754,17 @@ msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "No es pot trobar cap estatus." @@ -673,29 +777,38 @@ msgstr "No s'ha pogut obtenir un senyal de petició." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No s'ha pogut inserir el codi de confirmació." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "No s'ha pogut guardar el perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "No es pot actualitzar l'usuari per autosubscriure." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "No s'ha pogut actualitzar el registre de l'usuari." @@ -711,42 +824,48 @@ msgstr "No s'ha pogut actualitzar el registre de l'usuari." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "No s'ha pogut actualitzar l'usuari." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un nou usuari amb aquest sobrenom." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear nou compte" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Crear nou compte per a un OpenID que ja té un usuari." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Adreça actual Jabber/Gtalk confirmada." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telèfon actualment confirmat i activat per SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Correu electrònic confirmat actualment." @@ -755,23 +874,27 @@ msgid "Currently" msgstr "Actualment" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD en inserir resposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar nota." #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" @@ -779,11 +902,13 @@ msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correu electrònic" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Direcció de correu electrònic" @@ -793,39 +918,43 @@ msgid "Email Settings" msgstr "Configuració del correu electrònic" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmació de l'adreça de correu electrònic" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Correu electrònic, com Email address, like \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Direcció de correu electrònic" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Escriu un sobrenom o una adreça de correu electrònic." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error en autoritzar senyal" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error en connectar usuari a OpenID." @@ -836,39 +965,46 @@ msgstr "Error en connectar usuari." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error en inserir avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error en inserir el nou perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error en inserir perfil remot" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error en guardar confirmació de l'adreça." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error en guardar perfil remot" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error en guardar perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error en guardar l'usuari." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error en guardar usuari; invàlid." @@ -877,6 +1013,9 @@ msgstr "Error en guardar usuari; invàlid." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error en configurar l'usuari." @@ -887,6 +1026,7 @@ msgstr "Error en actualitzar el perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error en actualitzar el perfil remot" @@ -896,33 +1036,36 @@ msgid "Error with confirmation code." msgstr "Error amb el codi de confirmació." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Sobrenom ja existent." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntes freqüents" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Error en actualitzar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed per a amics de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed per a respostes a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed per a l'etiqueta %s" @@ -937,7 +1080,7 @@ msgstr "Trobar contingut de les notes" msgid "Find people on this site" msgstr "Trobar gent en aquest lloc" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -950,6 +1093,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nom complet" @@ -958,23 +1106,33 @@ msgstr "Nom complet" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "El teu nom és massa llarg (màx. 255 caràcters)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Inici" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Pàgina personal" @@ -982,21 +1140,27 @@ msgstr "Pàgina personal" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Vull publicar notificacions per correu electrònic." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Missatgeria Instantània" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adreça de missatgeria instantània" @@ -1006,7 +1170,7 @@ msgid "IM Settings" msgstr "Configuració de missatgeria instantània" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1014,7 +1178,7 @@ msgstr "" "Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i " "contrasenya per a connectar-lo al teu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1022,7 +1186,7 @@ msgstr "" "Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica " "\"Afegir\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1033,25 +1197,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correu electrònic entrant" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Eliminat el correu electrònic entrant." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contrasenya antiga incorrecta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nom d'usuari o contrasenya incorrectes." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1060,30 +1230,31 @@ msgstr "" "correu electrònic registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "L'URL de l'avatar '%s' és invàlid" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Correu electrònic invàlid: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "La pàgina personal '%s' és invàlida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "L'URL de la llicència '%s' és invàlid" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "El contingut de l'avís és invàlid" @@ -1098,13 +1269,13 @@ msgid "Invalid notice url" msgstr "L'URL de l'avís '%s' és invàlid" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "L'URL del perfil '%s' és invàlid." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "L'URL del perfil és invàlid (format incorrecte)" @@ -1122,44 +1293,52 @@ msgstr "Mida invàlida." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya invàlids." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitació(ons) enviada(des)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitació(ons) enviada(des) a la següent gent:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar nous usuaris" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Utilitza el software de microblogging [StatusNet](http://status.net), versió %" -"s, disponible sota la [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Utilitza el software de microblogging [StatusNet](http://status.net), versió " +"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1170,12 +1349,14 @@ msgstr "" "missatgeria instantània o a GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "L'idioma és massa llarg (màx 50 caràcters)." @@ -1184,7 +1365,15 @@ msgstr "L'idioma és massa llarg (màx 50 caràcters)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicació" @@ -1193,7 +1382,12 @@ msgstr "Ubicació" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)." @@ -1202,18 +1396,22 @@ msgstr "La ubicació és massa llarga (màx. 255 caràcters)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inici de sessió" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1224,22 +1422,26 @@ msgstr "" "tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " "[OpenID] (%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sortir" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nom llarg, preferiblement el teu nom \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Contrasenya oblidada o perduda?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic." @@ -1250,16 +1452,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestionar com reps correus de %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membre des de" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog de %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1272,42 +1476,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "El meu text i els meus fitxers estan disponibles sota " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nou" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nou correu electrònic per publicar a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nou sobrenom" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nou avís" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova contrasenya" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." @@ -1317,7 +1529,13 @@ msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Sobrenom" @@ -1326,7 +1544,12 @@ msgstr "Sobrenom" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " @@ -1335,49 +1558,60 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " "espais." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Sobrenom no permès." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Sobrenom de l'usuari que vols seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Sobrenom o correu electrònic" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Cap Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Cap petició d'autorització!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "No s'ha sel·leccionat cap transport." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No hi ha cap codi entrat" @@ -1389,11 +1623,15 @@ msgstr "Cap codi de confirmació." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Cap contingut!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "No hi ha cap direcció de correu electrònic." @@ -1402,7 +1640,9 @@ msgid "No id." msgstr "Cap identificador." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No hi ha cap direcció de correu electrònic entrant." @@ -1413,6 +1653,7 @@ msgstr "Cap sobrenom retornat pel servidor remot." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Cap sobrenom." @@ -1420,12 +1661,14 @@ msgstr "Cap sobrenom." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Cap confirmació pendent per a cancel·lar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "No hi ha cap número de telèfon." @@ -1435,7 +1678,8 @@ msgid "No profile URL returned by server." msgstr "Cap URL de perfil retornar pel servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Cap adreça de correu electrònic registrada per aquest usuari." @@ -1447,7 +1691,7 @@ msgstr "Cap petició trobada!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Cap resultat" @@ -1458,12 +1702,16 @@ msgstr "Cap mida." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No s'ha trobat cap estatus amb aquesta ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No s'ha trobat cap estatus amb la ID trobada." @@ -1473,13 +1721,15 @@ msgid "No such OpenID." msgstr "No existeix aquest compte OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No existeix aquest document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No existeix aquest avís." @@ -1517,12 +1767,22 @@ msgstr "No existeix aquesta subscripció" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No existeix aquest usuari." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No hi ha cap usuari amb aquesta direcció o usuari." @@ -1536,32 +1796,38 @@ msgid "Not a recovery code." msgstr "No és un codi de recuperació." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Usuari no registrat." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Format de data no suportat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID no vàlid" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID no vàlid." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "No és una direcció de correu electrònic vàlida." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." @@ -1569,6 +1835,11 @@ msgstr "Adreça de correu electrònic no vàlida." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." @@ -1588,7 +1859,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de perfil no vàlid (cap document YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "No és una imatge o és un fitxer corrupte." @@ -1599,11 +1871,13 @@ msgstr "No autoritzat." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Resposta inesperada!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "No s'ha trobat" @@ -1619,11 +1893,15 @@ msgstr "No s'ha trobat" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "No connectat." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "No estàs subscrit!" @@ -1640,39 +1918,44 @@ msgid "Notice feed for %s" msgstr "Feed d'avisos de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Avís sense perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Avisos" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Aviso etiquetats amb %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Antiga contrasenya" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuració del compte OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-enviament d'OpenID" @@ -1680,29 +1963,34 @@ msgstr "Auto-enviament d'OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Accés OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticació OpenID cancel·lada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticació OpenID fallida: %s." #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Error OpenID: %s" @@ -1718,11 +2006,12 @@ msgid "OpenID settings" msgstr "Configuració OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalment pots afegir un missatge a la invitació." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Càrrega parcial." @@ -1732,34 +2021,46 @@ msgstr "Càrrega parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contrasenya" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La contrasenya i la confirmació no coincideixen." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La contrasenya ha de tenir 6 o més caràcters." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Recuperació de contrasenya sol·licitada" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Contrasenya guardada." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Les contrasenyes no coincideixen." @@ -1779,14 +2080,17 @@ msgid "People search" msgstr "Cerca de gent" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Missatge personal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" @@ -1801,7 +2105,7 @@ msgstr "" "avisos de ningú, clica \"Cancel·lar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." @@ -1810,7 +2114,9 @@ msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferències" @@ -1819,42 +2125,52 @@ msgstr "Preferències" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferències guardades." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferència d'idioma" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacitat" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuració del perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconegut" @@ -1863,17 +2179,19 @@ msgid "Public Stream Feed" msgstr "Feed del flux públic" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Línia temporal pública" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publica una MicroID per al meu correu electrònic." @@ -1883,12 +2201,14 @@ msgid "Recent Tags" msgstr "Etiquetes recents" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contrasenya" @@ -1901,37 +2221,45 @@ msgstr "Codi de recuperació d'un usuari desconegut." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registre no permès." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registre satisfactori" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rebutjar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Recorda'm" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remot sense perfil corresponent" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Subscripció remota" @@ -1945,6 +2273,9 @@ msgstr "Subscripció remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" @@ -1953,7 +2284,7 @@ msgstr "Eliminar" msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1962,34 +2293,41 @@ msgstr "" "eliminar-lo, afegeix un altre abans." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostes" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respostes a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restablir" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restablir contrasenya" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número de telèfon pels SMS" @@ -1998,17 +2336,18 @@ msgstr "Número de telèfon pels SMS" msgid "SMS Settings" msgstr "Configuració SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmació SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual a la contrasenya de dalt" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." @@ -2021,12 +2360,21 @@ msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Cercar" @@ -2036,7 +2384,7 @@ msgid "Search Stream Feed" msgstr "Feed del flux de cerca" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2045,7 +2393,7 @@ msgstr "" "Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " "espais; han de ser majors a 3 caràcters." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2055,37 +2403,41 @@ msgstr "" "de cerca amb espais; han de ser majors a 3 caràcters." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecciona un transport" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" -"Enviar correu electrònic a aquesta direcció per publicar noves " -"notificacions." +"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" "Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " "electrònic." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviar-me avisos per Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2094,17 +2446,20 @@ msgstr "" "exorbitant càrrega del meu transport." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " "subscrita." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuració" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Configuració guardada." @@ -2124,27 +2479,32 @@ msgid "Something weird happened." msgstr "Alguna cosa estranya ha passat." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Perdó, no hi ha un correu electrònic entrant permès." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Perdó, aquest no és el teu correu electrònic entrant permès." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Font" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estadístiques" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "No s'ha trobat l'OpenID emmagatzemat." @@ -2152,24 +2512,28 @@ msgstr "No s'ha trobat l'OpenID emmagatzemat." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscriure's" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptors" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscripció autoritzada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscripció rebutjada" @@ -2177,28 +2541,35 @@ msgstr "Subscripció rebutjada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscripcions" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Etiquetes" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Cerca de text" @@ -2218,6 +2589,7 @@ msgid "That confirmation code is not for you!" msgstr "Aquest codi de confirmació no és per a tu!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Aquest correu electrònic pertany a un altre usuari." @@ -2227,63 +2599,73 @@ msgid "That file is too big." msgstr "Aquest fitxer és massa gran." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Aquest ja és el teu Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Aquest ja és el teu correu electrònic." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Aquest ja és el teu número de telèfon." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Aquest no és el teu Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Aquest no és el teu correu electrònic" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Aquest no és el teu número de telèfon." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Aquesta adreça de missatgeria instantània és incorrecta." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Aquest és un número de confirmació incorrecte." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Aquest número de telèfon pertany a un altre usuari." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Massa llarg. La longitud màxima és de 140 caràcters." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Massa llarg. La longitud màxima és de 255 caràcters." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." @@ -2292,11 +2674,14 @@ msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'adreça ha estat eliminada." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2691,8 @@ msgstr "" "Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " "El teu identificador de subscripció és:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2316,34 +2702,39 @@ msgstr "" "de nou les instruccions per a saber com rebutjar la subscripció completament." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Aquestes són les persones que escolten els avisos de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Aquestes són les persones que escolten els teus avisos." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Aquestes són les persones que %s escolta." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Aquestes són les persones que escoltes." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2352,7 +2743,7 @@ msgstr "" "botó d'enviament per a anar al teu proveïdor d'OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2367,6 +2758,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Aquest mètode requereix POST o DELETE." @@ -2375,25 +2769,37 @@ msgstr "Aquest mètode requereix POST o DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Aquest mètode requereix POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Franja horària" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Franja horària no seleccionada." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2406,18 +2812,21 @@ msgstr "" "perfil a sota." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Dos ids d'usuari o screen_names has de ser substituïts." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL del teu web, blog o perfil en un altre lloc" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" @@ -2429,15 +2838,22 @@ msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restabliment de contrasenya inesperat." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acció desconeguda" @@ -2468,38 +2884,47 @@ msgstr "Cancel·lar subscripció" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versió OMB no suportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Format d'imatge no suportat." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Actualitzacions per SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per Missatgeria Instantània" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Pujar" @@ -2520,6 +2945,7 @@ msgid "Upload a new profile image" msgstr "Carregar una nova imatge per al perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2527,7 +2953,9 @@ msgstr "" "utilitzin aquest servei." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" @@ -2552,11 +2980,16 @@ msgstr "L'usuari que vols seguir no existeix." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "L'usuari no té perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Sobrenom de l'usuari" @@ -2565,29 +2998,33 @@ msgid "User not found." msgstr "No s'ha trobat l'usuari." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Quina franja horària seria normal ser?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Què tal, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipus d'imatge incorrecte per a '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Mida d'imatge incorrecta per a '%s'" @@ -2595,7 +3032,9 @@ msgstr "Mida d'imatge incorrecta per a '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sí" @@ -2618,11 +3057,12 @@ msgid "You are already logged in!" msgstr "Ja t'has connectat!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ja estàs subscrit a aquests usuaris:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No ets amic dels usuaris que has especificat." @@ -2639,16 +3079,17 @@ msgstr "Pots crear un nou compte i començar a enviar avisos." #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -"Pots rebre missatges SMS a través del teu coreu electrònic des de " -"%%site.name%%." +"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" +"%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2657,7 +3098,8 @@ msgstr "" "Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" "GTalk. Configura la teva adreça i opcions a sota." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2668,21 +3110,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Pots utilitzar la subscripció local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "No pots registrar-te si no estàs d'acord amb la llicència." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "No ens vas enviar aquest perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2704,11 +3148,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "No pots eliminar l'estatus d'un altre usuari." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2716,6 +3162,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2723,22 +3170,23 @@ msgstr "" "Seràs avisat quan les teves invitacions siguin acceptades i els teus " "convidats es registrin al lloc. Gràcies per fer créixer la comunitat." -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "T'has identificat. Escriu una nova contrasenya a continuació." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "El teu URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "El teu nom d'usuari en aquest servidor, o la teva adreça de correu " "electrònic registrada." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2747,47 +3195,57 @@ msgstr "" "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " "compte d'usuari. Administra els teus OpenID associats aquí." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "fa pocs segons" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "fa un dia" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "fa un minut" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "fa un mes" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "fa un any" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "fa una hora" @@ -2809,12 +3267,14 @@ msgid "reply" msgstr "resposta" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "repeteix la contrasenya anterior" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipus de fitxer no suportat" @@ -2835,6 +3295,26 @@ msgstr "« Posterior" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " @@ -2845,6 +3325,7 @@ msgid "This notice is not a favorite!" msgstr "Aquesta notificació no és un favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "No pots eliminar favorits." @@ -2852,23 +3333,29 @@ msgstr "No pots eliminar favorits." msgid "Favor" msgstr "Favorit" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Aquesta nota ja és favorita." #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "No es pot crear favorit." @@ -2878,11 +3365,13 @@ msgstr "Desfavorit" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s notificacions favorites" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de notes favorites de %s" @@ -2926,33 +3415,44 @@ msgid "Login with your username and password. " msgstr "Entra amb el teu usuari i contrasenya. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "És massa llarg. Màxim del missatge és 140 caràcters." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No has especificat el destinatari." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "No pots enviar un missatge a aquest usuari." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Aquest usuari no existeix" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nou missatge" @@ -3008,6 +3508,11 @@ msgstr "Pots actualitzar la informació del teu perfil aquí " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuari sense perfil coincident" @@ -3036,6 +3541,8 @@ msgid "New password successfully saved. " msgstr "La nova contrasenya s'ha guardat satisfactòriament. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." @@ -3059,12 +3566,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Per subscriure't, pots [accedir] (%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed per favorits de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No s'ha pogut recuperar els avisos de favorits." @@ -3072,7 +3582,7 @@ msgstr "No s'ha pogut recuperar els avisos de favorits." msgid "No such message." msgstr "No existeix el missatge." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Només el remitent i el receptor poden llegir aquest missatge." @@ -3096,51 +3606,70 @@ msgid "Mobile carrier for your phone. " msgstr "Transport per al teu telèfon. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Missatges directes a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tots els missatges directes enviats a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Missatges directes que has enviat" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tots els missatges directes enviats per %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "No hi ha text al missatge!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "No has escrit cap usuari receptor." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favorits de %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s actualitzacions favorites per %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s ha afegit la teva nota com a favorita" @@ -3163,14 +3692,17 @@ msgstr "" "a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuració Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Compte Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Compte Twitter verificat actualment." @@ -3179,6 +3711,7 @@ msgid "Twitter Username" msgstr "Usuari Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "No espais, si us plaus." @@ -3187,18 +3720,22 @@ msgid "Twitter Password" msgstr "Contrasenya Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Automàticament envia les meves notes a Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Envia respostes locals '@' a Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Subscriure'm als meus amics de Twitter aquí." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3207,6 +3744,7 @@ msgstr "" "minúscules, i guions baixos (_). 15 caràcters màxim." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "No es poden verificar les teves credencials de Twitter!" @@ -3217,33 +3755,43 @@ msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "No s'ha pogut guardar la teva configuració de Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuració de Twitter guardada." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Aquest no és el teu compte de Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "No es pot eliminar aquest usuari de Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Compte de Twitter eliminat." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "No es poden guardar les preferències de Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferències de Twitter guardades." @@ -3260,18 +3808,19 @@ msgid "The subscription has been rejected, but no " msgstr "La subscripció ha estat rebutjada, però no " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultats de les comandes" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comanda completada" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comanda fallida" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Perdona, aquesta comanda no està implementada." @@ -3281,89 +3830,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Subscripcions: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "L'usuari no té última nota" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Nota marcada com a favorita." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nom complet: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Localització: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre tu: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Missatge directe per a %s enviat" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error al enviar el missatge directe." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifica el nom de l'usuari a que vols subscriure't" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Subscrit a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Has deixat d'estar subscrit a %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificacions off." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No es poden posar en off les notificacions." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificacions on." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "No es poden posar en on les notificacions." @@ -3371,11 +3942,11 @@ msgstr "No es poden posar en on les notificacions." msgid "Commands:\n" msgstr "Comandes:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "No s'ha pogut inserir el missatge." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." @@ -3392,7 +3963,7 @@ msgstr "" "Tens una nova direcció per publicar a %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nou missatge privat de %s" @@ -3406,7 +3977,7 @@ msgstr "" "%1$s (%2$s) t'ha enviat un nou missatge privat:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Només l'usuari pot llegir les seves safates de correu." @@ -3415,31 +3986,39 @@ msgid "This form should automatically submit itself. " msgstr "Aquest formulari s'ha d'enviar automàticament. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favorits" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's notes favorites" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Safata d'entrada" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Els teus missatges rebuts" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Safata de sortida" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Els teus missatges enviats" @@ -3452,14 +4031,19 @@ msgid "Twitter integration options" msgstr "Opcions d'integració amb Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "No es pot analitzar el missatge." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s i amics, pàgina %d" @@ -3469,21 +4053,31 @@ msgid "You can upload your personal avatar." msgstr "Pots pujar el teu avatar personal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Configuració de l'avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Previsualitzar" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Crop" @@ -3500,36 +4094,45 @@ msgid "There was a problem with your session token. " msgstr "Ha ocorregut un error amb la teva sessió. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " "avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "S'ha perdut el nostre fitxer de dades." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Hem perdut el nostre arxiu." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipus de fitxer desconegut" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No s'ha especificat perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No hi ha cap perfil amb aquesta ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Usuari bloquejat." @@ -3537,11 +4140,11 @@ msgstr "Usuari bloquejat." msgid "Are you sure you want to block this user? " msgstr "N'estàs segur/a que vols bloquejar aquest usuari? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Ja havies bloquejat aquest usuari." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Error al guardar la informació del block." @@ -3558,38 +4161,56 @@ msgstr "Estàs a punt d'eliminar permanentment una notificació. " msgid "Add to favorites" msgstr "Afegir a favorits" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar el grup %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "La safata d'entrada ha d'estar habilitat per als grups de treball" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Has d'haver entrat per crear un grup." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Cap sobrenom." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "No existeix tal grup" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Has de ser admin per editar aquest grup" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Utilitza aquest formulari per editar el grup." @@ -3600,14 +4221,15 @@ msgstr "" "espais. " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Configuració guardada." @@ -3624,7 +4246,8 @@ msgstr "Indicar una nova direcció de correu electrònic per publicar; " msgid "Send me email when someone " msgstr "Envia'm un correu electrònic quan algú " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic." @@ -3638,7 +4261,7 @@ msgstr "" "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " "has afegit. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Error del servidor - no es pot obtenir l'usuari!" @@ -3652,51 +4275,66 @@ msgstr "Si vols l'aplicació %s per actualitzar automàticament " msgid "Allow %s to update my Facebook status" msgstr "Permetre %s actualitzar el meu estat a Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Saltar" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Cap contingut!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginació" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Posteriors" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Anteriors" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Gràcies per convidar els teus amics a utilitzar %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Les invitacions han estat enviades als següents usuaris:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Has estat convidat a %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Convidar els teus amics a utilitzar %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amics ja utilitzant %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar invitacions" @@ -3707,7 +4345,8 @@ msgstr "No s'ha pogut eliminar l'usuari de Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Ha ocorregut un problema al guardar les preferències de sincronització!" +msgstr "" +"Ha ocorregut un problema al guardar les preferències de sincronització!" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -3740,12 +4379,14 @@ msgstr "Si vols que %s s'actualitzi automàticament " msgid "Sync preferences" msgstr "Preferències de sincronització" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Desfavoritar favorit" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Notificacions populars" @@ -3759,7 +4400,8 @@ msgid "The most popular notices on the site right now." msgstr "Les notificacions més populars en aquest lloc ara mateix." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuaris destacats" @@ -3773,15 +4415,17 @@ msgstr "Usuaris destacats, pàgina %d" msgid "A selection of some of the great users on %s" msgstr "Una selecció d'alguns dels millors usuaris a %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Aquest usuari t'ha bloquejat com a subscriptor." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "No ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo del grup" @@ -3789,11 +4433,13 @@ msgstr "Logo del grup" msgid "You can upload a logo image for your group." msgstr "Pots pujar una imatge de logo per al grup." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo actualitzat." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Error en actualitzar logo." @@ -3812,7 +4458,8 @@ msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grups" @@ -3827,6 +4474,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% grups amb qui pots trobar i parlar " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear nou grup" @@ -3836,7 +4484,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Cercar grup" @@ -3858,20 +4506,20 @@ msgstr "Enviar-me avisos per Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Un codi de confirmació ha estat enviat " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Has d'haver entrat per participar en un grup." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Ja ets membre d'aquest grup" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "No s'ha pogut afegir l'usuari %s al grup %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s s'ha pogut afegir al grup %s" @@ -3882,15 +4530,18 @@ msgstr "" "Les safates d'entrada han d'estar activades per entrar a formar part dels " "grups." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Has d'haver entrat per a poder marxar d'un grup." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "No s'ha trobat el grup." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." @@ -3898,21 +4549,25 @@ msgstr "No ets membre d'aquest grup." msgid "You may not leave a group while you are its administrator." msgstr "No pots abandonar aquest grup mentre en sigui l'administrador." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "No s'han trobat registres dels membres." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s ha abandonat el grup %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Accedir al lloc" @@ -3924,15 +4579,17 @@ msgstr "No té cap estatus ara mateix" msgid "New group" msgstr "Nou grup" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Utilitza aquest formulari per crear un nou grup." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." @@ -3944,11 +4601,14 @@ msgstr "Això és massa llarg. " msgid "Don't send a message to yourself; " msgstr "No t'enviïs missatges a tu mateix; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Notificació publicada" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Error" @@ -3967,7 +4627,7 @@ msgstr "Reclamació enviada" msgid "Nudge sent!" msgstr "Reclamació enviada!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Accés OpenID" @@ -3991,28 +4651,32 @@ msgstr "Auto-escurçament de la URL" msgid "Service" msgstr "Servei" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servei d'auto-escurçament a utilitzar." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." +msgstr "" +"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Canviar contrasenya" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Contrasenya canviada." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Etiqueta no vàlida per a la gent: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" @@ -4022,11 +4686,12 @@ msgstr "Usuaris que s'han etiquetat %s - pàgina %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Aquests són usuaris que s'han etiquetat ells mateixos \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informació del perfil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4038,20 +4703,25 @@ msgid "Automatically subscribe to whoever " msgstr "Automàticament subscriure's a tothom " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Línia temporal pública, pàgina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "No s'ha pogut recuperar la conversa pública." @@ -4061,8 +4731,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Això és %%site.name%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4073,11 +4743,13 @@ msgstr "Núvol públic d'etiquetes" msgid "These are most popular recent tags on %s " msgstr "Aquestes són les etiquetes recents més populars a %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Núvol d'etiquetes" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Ho senti, però només la gent convidada pot registrar-se." @@ -4127,7 +4799,8 @@ msgstr "(Hauries de rebre un missatge per correu electrònic " msgid "That's a local profile! Login to subscribe." msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Respostes a %s, pàgina %d" @@ -4137,50 +4810,71 @@ msgstr "Respostes a %s, pàgina %d" msgid "%s favorite notices, page %d" msgstr "%s notificacions favorites, pàgina %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s grup" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s grup, pàgina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Perfil del grup" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Avisos" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membres" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tots els membres" @@ -4190,14 +4884,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging)" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Només el remitent i el destinatari " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pàgina %d" @@ -4207,30 +4901,37 @@ msgid "'s profile" msgstr "perfil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Perfil de l'usuari" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Accions de l'usuari" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Enviar un missatge directe a aquest usuari" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Missatge" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tots els subscriptors" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tots els grups" @@ -4240,8 +4941,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4256,7 +4957,7 @@ msgid "A confirmation code was sent to the phone number you added. " msgstr "" "El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Transport mòbil" @@ -4314,16 +5015,17 @@ msgstr "Aquestes són les persones les notícies dels quals " msgid "These are the people whose " msgstr "Aquestes són les persones les quals" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notificació etiquetada amb %s, pàgina %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Missatges etiquetats \"%s\", més recents primer" @@ -4345,7 +5047,7 @@ msgstr "Etiqueta %s" msgid "Tag user" msgstr "Etiqueta usuari" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4357,18 +5059,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " "a tu." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " @@ -4378,20 +5080,23 @@ msgstr "" msgid "No such tag." msgstr "No existeix aquesta etiqueta." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog etiquetat com %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Ha fallat el bloqueig d'usuari." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Ha fallat el desbloqueig d'usuari." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "No s'ha trobat." @@ -4399,15 +5104,16 @@ msgstr "No s'ha trobat." msgid "Add your Twitter account to automatically send " msgstr "Afegeix el teu compte Twitter per automàticament enviar " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Usuari Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Contrasenya Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amics Twitter" @@ -4420,145 +5126,154 @@ msgstr "Nom d'usuari sols pot contenir números, " msgid "Unable to retrieve account information " msgstr "No s'ha pogut obtenir informació del compte " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Error al moure el block." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No id en el perfil sol·licitat." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "No hi ha cap perfil amb aquesta id." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "No subscrit" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s grups" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s grups, pàgina %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Pujar un avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Altres" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Altres opcions" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Pàgina sense titol" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegació primària del lloc" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Cercar gent o text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Compte" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connectar a missatgeria instantània, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sortir d'aquest lloc" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Accedir a aquest lloc" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Crear nou compte" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Accedir amb OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tot " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "llicència." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Bloquejar aquest usuari" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquejar" @@ -4571,11 +5286,14 @@ msgstr "Deixar de tenir favorita aquesta notificació" msgid "To use the %s Facebook Application you need to login " msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " un nou compte." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publicat" @@ -4595,53 +5313,59 @@ msgstr "Filtre d'etiquetes" msgid "All" msgstr "Tot" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elegeix una etiqueta para reduir la llista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Anar" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del teu web, blog del grup u tema" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descriu el grup amb 140 caràcters" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" +msgstr "" +"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Grup" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propietats del grup %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Afegir o editar logo %s" @@ -4671,11 +5395,11 @@ msgstr "Inici de sessió" msgid "Leave" msgstr "Abandonar" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Accedir amb el nom d'usuari i contrasenya" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Crear nou compte" @@ -4697,17 +5421,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s ara està escoltant " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Ubicació: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Pàgina personal: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4716,7 +5440,7 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Has estat reclamat per %s" @@ -4731,39 +5455,47 @@ msgstr "%1$s (%2$s) vol saber què estàs fent " msgid "%1$s just added your notice from %2$s" msgstr "%1$s ha afegit la teva notificació des de %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Des de" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar notificació directa" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Enviar notificació" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caràcters disponibles" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en resposta a" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Respondre" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Eliminar aquesta nota" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Eliminar" @@ -4784,27 +5516,29 @@ msgstr "Enviar una reclamació a aquest usuari" msgid "Tags in %s's notices" msgstr "Etiquetes en les notificacions de %s's" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(cap)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Públic" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grups d'usuaris" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetes recents" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacat" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4820,31 +5554,33 @@ msgstr "Trobar un grup en aquest lloc" msgid "Untitled section" msgstr "Secció sense títol" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Persones %s subscrites a" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Persones subscrites a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s grups són membres de" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Un usuari t'ha bloquejat." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscriure's a aquest usuari" @@ -4857,10 +5593,11 @@ msgid "Top posters" msgstr "Que més publiquen" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquejar aquest usuari" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquejar" @@ -4868,6 +5605,2068 @@ msgstr "Desbloquejar" msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s i amics" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Pots pujar el teu avatar personal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualitzat." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " +"no ho podràs desfer." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Pots pujar una imatge de logo per al grup." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog de %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error al enviar el missatge directe." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Cerca \"%s\" al flux" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " +"contrasenya abans de canviar la teva configuració." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flux públic" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flux públic" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flux públic" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepte les següents dades privades: contrasenya, adreça de correu " +"electrònic, adreça de missatgeria instantània, número de telèfon." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Perfil del grup" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "perfil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Safata de sortida per %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuració del perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " +"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " +"instruccions per utilitzar-lo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Aquest usuari no existeix" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " +"a Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Cercar gent o text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connectar a missatgeria instantània, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Reclamar" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s ara està escoltant els teus avisos a %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentament,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Cercar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existeix aquest document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de l'usuari" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s i amics, pàgina %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ha fallat el desbloqueig d'usuari." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codi de confirmació" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No es pot esborrar la notificació." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta no vàlida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Aquest sobrenom ja existeix. Prova un altre. " + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No es pot crear favorit." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nou avís" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nou avís" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Sobrenom no vàlid." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No s'ha especificat perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Un usuari t'ha bloquejat." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No ets membre d'aquest grup." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Usuari bloquejat." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Has d'haver entrat per crear un grup." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grups" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No s'ha pogut actualitzar l'usuari." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferències de sincronització guardades." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Has de ser admin per editar aquest grup" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Cap resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Un usuari t'ha bloquejat." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Missatge" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "No s'ha pogut guardar el perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " +"compte d'usuari. Administra els teus OpenID associats aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuració del perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " +"que t'enviarem al correu electrònic que tinguis posat al teu compte." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "T'has identificat. Escriu una nova contrasenya a continuació." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Recuperació de contrasenya sol·licitada" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error amb el codi de confirmació." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscriure's a aquest usuari" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s notificacions favorites, pàgina %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "No existeix aquest usuari." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Aviso etiquetats amb %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s ara està escoltant " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed d'avisos de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Aquesta nota ja és favorita." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Aquesta notificació no és un favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "No s'ha pogut recuperar la conversa pública." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No has especificat el destinatari." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No es pot trobar cap estatus." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Notificacions contestant a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "llicència." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscripcions" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuració del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No ets membre d'aquest grup." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema en guardar l'avís." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Missatge per a %1$s a %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Perfil de l'usuari" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Pujar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Canviar la teva contrasenya" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connectar-se" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Cercar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inici de sessió" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquejar" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Usuari bloquejat." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Afegir o editar logo %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Cap contingut!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuari" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Cercar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "La pàgina personal no és un URL vàlid." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No existeix aquesta etiqueta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Missatges directes a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "És massa llarg. Màxim del missatge és 140 caràcters." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ja ets membre d'aquest grup" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No s'ha pogut afegir l'usuari %s al grup %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "No ets membre d'aquest grup." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grups" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s grups són membres de" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Accions del grup" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Massa llarg. La longitud màxima és de 140 caràcters." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format d'imatge no suportat." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'usuari que vols seguir no existeix." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autoritzat." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versió desconeguda del protocol OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No existeix aquest avís." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Hem perdut el nostre arxiu." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Aquesta pàgina no està disponible en " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " +"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " +"[OpenID] (%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Explica'ns alguna cosa sobre tu " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia és massa llarga (màx. 140 caràcters)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no vàlid (cap document YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "No s'ha pogut obtenir un senyal de petició." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed d'avisos del grup %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Missatge per a %1$s a %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s grup" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notificació publicada" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Aquesta pàgina no està disponible en " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " +"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " +"El teu identificador de subscripció és:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " +"de nou les instruccions per a saber com rebutjar la subscripció completament." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "No es pot llegir l'URL de l'avatar '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipus d'imatge incorrecte per a '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "No s'ha pogut redirigir al servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Llicència del programari StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Reclamació enviada" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "respondre a aquesta nota" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema en guardar l'avís." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Cap codi de confirmació." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedir a aquest lloc" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona un transport" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed d'avisos de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha afegit la teva nota com a favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "No pots eliminar favorits." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar nota." + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Crear nou compte" diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index 4618fd73d778b6e5942d7b337820c54ebf77d024..f20634a2f663f8421e562276ddad62a4d01fdcee 100644 GIT binary patch delta 17151 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 delta 10640 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 diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index aee74f1af3..f4c2137201 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-07 22:07+0000\n" "Last-Translator: Tomas Kral \n" "Language-Team: LANGUAGE \n" @@ -18,14 +18,14 @@ msgstr "" # jak přeložit stream? #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, fuzzy, php-format msgid " Search Stream for \"%s\"" msgstr " Hledej \"%s\" ve Streamu" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgid " from " msgstr " od " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -80,6 +82,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1 od teď naslouchá tvým sdělením v %2" @@ -102,25 +105,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1 statusů na %2" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Veřejný \"Stream\"" @@ -130,40 +136,55 @@ msgstr "Veřejný \"Stream\"" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s a přátelé" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -172,7 +193,8 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." @@ -184,30 +206,34 @@ msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 a více znaků" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 a více znaků, a nezapomeňte" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -217,6 +243,7 @@ msgstr "" "posílání zpráv." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -246,7 +273,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -269,16 +323,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "O nás" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Přijmout" @@ -289,6 +350,9 @@ msgstr "Přijmout" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Přidat" @@ -306,27 +370,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresa" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Všechny odběry" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Všechny aktualizace pro %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Všechny položky obsahující \"%s\"" @@ -336,30 +402,37 @@ msgstr "Všechny položky obsahující \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Již přihlášen" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Již přihlášeno" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizovaný odběr" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -367,15 +440,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Obrázek" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Obrázek nahrán" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -385,13 +462,14 @@ msgstr "" "účtu. (Přidal jste si %s do vašich kontaktů?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -403,6 +481,8 @@ msgstr "Starší »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "O mě" @@ -410,16 +490,18 @@ msgstr "O mě" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Nelze přečíst adresu obrázku '%s'" @@ -427,6 +509,8 @@ msgstr "Nelze přečíst adresu obrázku '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Nelze uložit nové heslo" @@ -434,31 +518,34 @@ msgstr "Nelze uložit nové heslo" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Zrušit" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Nelze dolozit zákaznický objekt OpenID" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat JabberID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Změnit" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -468,11 +555,12 @@ msgid "Change password" msgstr "Změnit heslo" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -482,6 +570,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Heslo znovu" @@ -494,12 +585,14 @@ msgstr "Potvrď adresu" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Potvrď zrušení" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -508,7 +601,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Potvrzující kód nebyl nalezen" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -528,20 +622,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Připojit" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Zruš existující účet" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Nelze vytvořit OpenID z: %s" @@ -549,35 +647,39 @@ msgstr "Nelze vytvořit OpenID z: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Nelze přesměrovat na server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Nelze uložin informace o obrázku" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Nelze uložit nové informace do profilu" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -597,15 +699,17 @@ msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -618,29 +722,38 @@ msgstr "Nelze získat řetězec požadavku." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nelze vložit potvrzující kód" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Nelze uložit profil" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -656,42 +769,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Nelze aktualizovat uživatele" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Vytvořit" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Vytvořit nového uživatele s touto přezdívkou" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Vytvořit nový účet" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Pro toto OpenID již uživatel existuje" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Potvrzené Jabber/GTalk adresy" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -700,23 +819,27 @@ msgid "Currently" msgstr "Nyní" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Chyba v DB při vkládání odpovědi: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" @@ -724,11 +847,13 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -738,39 +863,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Emailová adresa již existuje" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Zadej přezdívku nebo emailovou adresu" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Chyba potvrujícího řetězce" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Chyba při propojení uživatele na OpenID" @@ -781,39 +910,46 @@ msgstr "Chyba přihlašování uživatele" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Chyba při kládání obrázku" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Chyba při vkládání nového profilu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Chyba při vkládaní vzdáleného profilu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Chyba při ukládání potvrzení adresy" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Chyba při ukládnání vzdáleného profilu" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Chyba při ukládaní profilu" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Chyba při ukládaní uživatele" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Chyba při ukládaní uživatele; neplatný" @@ -822,6 +958,9 @@ msgstr "Chyba při ukládaní uživatele; neplatný" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Chyba nastavení uživatele" @@ -832,6 +971,7 @@ msgstr "Chyba při aktualizaci profilu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Chyba při aktualizaci vzdáleného profilu" @@ -841,33 +981,36 @@ msgid "Error with confirmation code." msgstr "Chyba v ověřovacím kódu" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Existující jméno" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Nahrávání obrázku selhalo." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, fuzzy, php-format msgid "Feed for friends of %s" msgstr "Feed přítel uživatele: %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, fuzzy, php-format msgid "Feed for replies to %s" msgstr "Feed odpovědí na %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -882,7 +1025,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -893,6 +1036,11 @@ msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Celé jméno" @@ -901,23 +1049,33 @@ msgstr "Celé jméno" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Nápověda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Domů" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Moje stránky" @@ -925,21 +1083,27 @@ msgstr "Moje stránky" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Stránka není platnou URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adresa" @@ -949,7 +1113,7 @@ msgid "IM Settings" msgstr "IM nastavení" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -957,7 +1121,7 @@ msgstr "" "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " "účet s OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -965,7 +1129,7 @@ msgstr "" "Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a " "klikněte na \"Přidat\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -974,25 +1138,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Neplatné heslo" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Neplatné jméno nebo heslo" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1001,30 +1171,31 @@ msgstr "" "u vašeho účtu." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Neplatná adresa obrázku '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Neplatná adresa '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Neplatná adresa licence '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Neplatný obsah sdělení" @@ -1039,13 +1210,13 @@ msgid "Invalid notice url" msgstr "Neplatná url sdělení" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Neplatná adresa profilu '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Neplatná adresa profilu (špatný formát)" @@ -1063,28 +1234,35 @@ msgstr "Neplatná velikost" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Neplatné jméno nebo heslo" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1096,11 +1274,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID již patří jinému uživateli" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1110,12 +1289,14 @@ msgstr "" "jste přidal %s do vašeho seznamu kontaktů." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1124,7 +1305,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Umístění" @@ -1133,7 +1322,12 @@ msgstr "Umístění" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" @@ -1142,18 +1336,22 @@ msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Přihlásit" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1164,22 +1362,26 @@ msgstr "" "[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" "action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Odhlásit" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Ztracené nebo zapomenuté heslo?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1190,16 +1392,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Členem od" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblog od %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1209,42 +1413,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mé texty a soubory jsou k dispozici pod" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nová přezdívka" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nové sdělení" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nové heslo" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." @@ -1254,7 +1466,13 @@ msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Přezdívka" @@ -1263,7 +1481,12 @@ msgstr "Přezdívka" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou" @@ -1272,47 +1495,58 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Přezdívka není povolena" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Přezdívka uživatele, kterého chcete sledovat" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Přezdívka nebo email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Žádné Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Žádné potvrení!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1324,11 +1558,15 @@ msgstr "Žádný potvrzující kód." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Žádný obsah!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1337,7 +1575,9 @@ msgid "No id." msgstr "Žádné id" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1348,6 +1588,7 @@ msgstr "Nebyla poskytnuta žádná přezdívka od servru." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Žádná přezdívka." @@ -1355,12 +1596,14 @@ msgstr "Žádná přezdívka." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nečeká žádné potvrzení na zrušení." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1370,7 +1613,8 @@ msgid "No profile URL returned by server." msgstr "Nebylo vráceno žádné URL profilu od servu." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Žádný registrovaný email pro tohoto uživatele." @@ -1382,7 +1626,7 @@ msgstr "Žádný požadavek nebyl nalezen!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Žádné výsledky." @@ -1393,12 +1637,16 @@ msgstr "Žádná velikost" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1408,13 +1656,15 @@ msgid "No such OpenID." msgstr "Žádné takové OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Žádný takový dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Žádné takové oznámení." @@ -1452,12 +1702,22 @@ msgstr "Žádné takové odebírání" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Žádný takový uživatel." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1471,32 +1731,38 @@ msgid "Not a recovery code." msgstr "Není obnovujícím kódem" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Není platným Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Není platným OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." @@ -1504,6 +1770,11 @@ msgstr "Není platnou mailovou adresou." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." @@ -1523,7 +1794,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Není platnou adresou profilu (není YADIS dokumentem)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Není obrázkem, nebo jde o poškozený soubor." @@ -1534,11 +1806,13 @@ msgstr "Neautorizován." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Nečekaná odpověď." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1554,11 +1828,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Nepřihlášen" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Nepřihlášen!" @@ -1575,39 +1853,44 @@ msgid "Notice feed for %s" msgstr "Feed sdělení pro %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Sdělení nemá profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Sdělení" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Staré heslo" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Nastavení OpenID účtu" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Přihlásit automaticky pomocí OpenID" @@ -1615,29 +1898,34 @@ msgstr "Přihlásit automaticky pomocí OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID přihlášení" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID adresa" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Přihlašovaní pomocí OpenID zrušeno" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Přihlašovaní pomocí OpenID selhalo: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID selhalo: %s" @@ -1653,11 +1941,12 @@ msgid "OpenID settings" msgstr "Nastavení OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Částečné náhrání." @@ -1667,34 +1956,46 @@ msgstr "Částečné náhrání." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Heslo" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Heslo a potvrzení nesouhlasí" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Heslo musí být alespoň 6 znaků dlouhé" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Žádost o obnovu hesla" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Heslo uloženo" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Hesla nesouhlasí" @@ -1714,14 +2015,17 @@ msgid "People search" msgstr "Hledání lidí" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Osobní" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2040,7 @@ msgstr "" "klikněte na \"Zrušit\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." @@ -1745,7 +2049,9 @@ msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Nastavení" @@ -1754,42 +2060,52 @@ msgstr "Nastavení" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Nastavení uloženo" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Soukromí" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Adresa Profilu" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Nastavené Profilu" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Neznámý profil" @@ -1799,17 +2115,19 @@ msgid "Public Stream Feed" msgstr "Veřejný Stream Feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Veřejné zprávy" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1819,12 +2137,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Obnovit" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Obnovit" @@ -1837,37 +2157,45 @@ msgstr "Obnovyt kód pro neznámého uživatele" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Odmítnout" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Zapamatuj si mě" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Vzdálený profil s nesouhlasícím profilem" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Vzdálený odběr" @@ -1881,6 +2209,9 @@ msgstr "Vzdálený odběr" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Odstranit" @@ -1889,7 +2220,7 @@ msgstr "Odstranit" msgid "Remove OpenID" msgstr "Odstranit OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1898,34 +2229,41 @@ msgstr "" "přihlášení, nejprve přidejte jiné OpenID" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Odpovědi" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Odpovědi na %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reset" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Resetovat heslo" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1934,17 +2272,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stejné jako heslo výše" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1957,12 +2296,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Hledat" @@ -1973,7 +2321,7 @@ msgid "Search Stream Feed" msgstr "Hledat ve Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1982,7 +2330,7 @@ msgstr "" "Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " "alespoň 3 znaky" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1992,48 +2340,56 @@ msgstr "" "Minimální délka musí být alespoň 3 znaky" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Odeslat" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Nastavení" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Nastavení uloženo" @@ -2053,27 +2409,32 @@ msgid "Something weird happened." msgstr "Něco zvláštního se stalo" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Zdroj" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiky" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Uložené OpenID nebylo nalezeno." @@ -2081,24 +2442,28 @@ msgstr "Uložené OpenID nebylo nalezeno." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Odebírat" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Odběratelé" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Odběr autorizován" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Odběr odmítnut" @@ -2106,28 +2471,35 @@ msgstr "Odběr odmítnut" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Odběry" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Vyhledávání textu" @@ -2147,6 +2519,7 @@ msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2156,63 +2529,73 @@ msgid "That file is too big." msgstr "Soubor je příliš velký" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Toto je špatná IM adresa" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" byla potvrzena pro váš účet" @@ -2221,11 +2604,14 @@ msgstr "Adresa \"%s\" byla potvrzena pro váš účet" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adresa byla odstraněna" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2235,7 +2621,8 @@ msgstr "" "nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " "je:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2245,33 +2632,38 @@ msgstr "" "nápovědě jak správně postupovat při zamítání odběru" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením " #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2280,7 +2672,7 @@ msgstr "" "přechod k vašemu OpenID poskytovately." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2295,6 +2687,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2303,25 +2698,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2333,18 +2740,21 @@ msgstr "" "mikroblozích](%%doc.openmublog%%), vložte níže asdresu " #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Adresa profilu na jiných kompatibilních mikroblozích." @@ -2356,15 +2766,22 @@ msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Nečekaná forma submission." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Nečekané resetování hesla." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2395,38 +2812,47 @@ msgstr "Odhlásit" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Nepodporovaná verze OMB." #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Upload" @@ -2445,12 +2871,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." @@ -2474,11 +2903,16 @@ msgstr "Úživatel, kterému nasloucháte neexistuje." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Uživatel nemá profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Přezdívka" @@ -2487,29 +2921,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Co se děje %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Neplatný typ obrázku pro '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Neplatná velikost obrázku '%s'" @@ -2517,7 +2955,9 @@ msgstr "Neplatná velikost obrázku '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2538,11 +2978,12 @@ msgid "You are already logged in!" msgstr "Již jste přihlášen" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2560,7 +3001,7 @@ msgstr "Můžete vytvožit nový účet a začít posílat oznámení." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2568,6 +3009,7 @@ msgstr "" "Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2576,7 +3018,8 @@ msgstr "" "Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" "%).Zadejte svou adresu níže." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2587,21 +3030,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Můžete použít místní odebírání." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Neodeslal jste nám profil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2615,35 +3060,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Byl jste identifikován. Zadejte nové heslo" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Vaše OpenID adresa" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2652,47 +3101,57 @@ msgstr "" "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " "Zde může spravovat vaše OpenID" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "před pár sekundami" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "asi přede dnem" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "asi před minutou" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "asi před měsícem" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "asi před rokem" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "asi před hodinou" @@ -2714,12 +3173,14 @@ msgid "reply" msgstr "odpověď" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "stejné jako heslo výše" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2741,6 +3202,26 @@ msgstr "« Novější" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2749,6 +3230,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2756,22 +3238,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2781,11 +3269,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2825,33 +3315,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2905,6 +3406,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2933,6 +3439,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2953,12 +3461,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2966,7 +3477,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2990,51 +3501,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3053,14 +3583,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3069,6 +3602,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3077,24 +3611,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3105,33 +3644,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3148,18 +3697,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3169,89 +3719,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3259,11 +3831,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3278,7 +3850,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3290,7 +3862,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3299,31 +3871,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3336,14 +3916,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s a přátelé" @@ -3353,22 +3938,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Nastavení" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3385,35 +3980,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Žádné takové oznámení." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Žádný takový uživatel." @@ -3422,12 +4026,12 @@ msgstr "Žádný takový uživatel." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Již jste přihlášen" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3444,40 +4048,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Žádná přezdívka." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Žádné takové oznámení." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3487,16 +4109,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Nastavení uloženo" @@ -3514,7 +4137,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3530,7 +4154,7 @@ msgstr "" "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " "posílání zpráv." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3544,54 +4168,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Žádný obsah!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Novější" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Starší »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed přítel uživatele: %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3637,12 +4276,14 @@ msgstr "" msgid "Sync preferences" msgstr "Nastavení" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Žádné takové oznámení." @@ -3657,7 +4298,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3671,15 +4313,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3687,12 +4331,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Obrázek nahrán" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Nahrávání obrázku selhalo." @@ -3712,7 +4358,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3727,6 +4374,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Vytvořit nový účet" @@ -3739,7 +4387,7 @@ msgstr "" "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " "Minimální délka musí být alespoň 3 znaky" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Hledání lidí" @@ -3763,21 +4411,21 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent " msgstr "Žádný potvrzující kód." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Již jste přihlášen" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Nelze přesměrovat na server: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3786,16 +4434,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Žádné takové oznámení." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" @@ -3804,21 +4455,25 @@ msgstr "Neodeslal jste nám profil" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Nelze vytvořit OpenID z: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3830,16 +4485,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvořit odebírat" @@ -3853,12 +4510,15 @@ msgstr "Soubor je příliš velký" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Sdělení" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3875,7 +4535,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID přihlášení" @@ -3903,11 +4563,13 @@ msgstr "" msgid "Service" msgstr "Hledat" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" @@ -3917,17 +4579,18 @@ msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" msgid "Change your password." msgstr "Změnit heslo" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Heslo uloženo" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Není platnou mailovou adresou." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3937,12 +4600,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Neznámý profil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3952,21 +4616,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Neplatná adresa '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Nelze uložit profil" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Veřejné zprávy" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3987,11 +4656,13 @@ msgstr "Veřejný Stream Feed" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4048,7 +4719,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Odpovědi na %s" @@ -4058,53 +4730,74 @@ msgstr "Odpovědi na %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Žádné takové oznámení." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Sdělení" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Členem od" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4119,7 +4812,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4130,32 +4823,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Uživatel nemá profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Odběratelé" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4181,7 +4881,7 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Tento potvrzující kód vám nepatří!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4245,17 +4945,18 @@ msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" msgid "These are the people whose " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Žádné Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mikroblog od %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4279,7 +4980,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4289,17 +4990,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Nelze uložin informace o obrázku" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4308,20 +5009,23 @@ msgstr "" msgid "No such tag." msgstr "Žádné takové oznámení." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Mikroblog od %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Žádný požadavek nebyl nalezen!" @@ -4330,16 +5034,17 @@ msgstr "Žádný požadavek nebyl nalezen!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nové heslo" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4352,157 +5057,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Nelze smazat potvrzení emailu" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Chyba při ukládaní uživatele" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Nebylo vráceno žádné URL profilu od servu." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Vzdálený profil s nesouhlasícím profilem" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Nahrávání obrázku selhalo." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "O nás" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Žádné takové OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Nápověda" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Žádný takový uživatel." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4515,12 +5229,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Vytvořit nový účet" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Veřejné" @@ -4542,34 +5259,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Odběry" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4579,21 +5301,21 @@ msgstr "Místo. Město, stát." msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Odhlásit" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4626,12 +5348,12 @@ msgstr "Přihlásit" msgid "Leave" msgstr "Uložit" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Neplatné jméno nebo heslo" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Vytvořit nový účet" @@ -4652,24 +5374,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Umístění %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Moje stránky: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4684,43 +5406,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nové sdělení" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 a více znaků" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "odpověd na ..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4741,27 +5471,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Veřejné" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Hledání lidí" @@ -4779,32 +5511,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Vzdálený odběr" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Vzdálený odběr" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Uživatel nemá profil." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Odběr autorizován" @@ -4818,11 +5552,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Žádný takový uživatel." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4830,6 +5565,2021 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s a přátelé" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Obrázek nahrán" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblog od %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +# jak přeložit stream? +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hledej \"%s\" ve Streamu" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " +"číslo." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Vytvořit" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Žádné takové oznámení." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Obrázek" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Nastavené Profilu" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "Tento potvrzující kód vám nepatří!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Žádný takový uživatel." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Nelze smazat potvrzení emailu" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " +"účet s OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1 naslouchá vašim sdělením na %s. \n" +"\n" +"\t%3\n" +"\n" +"S úctou váš,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Hledat" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Žádný takový dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Nelze přesměrovat na server: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Žádný takový uživatel." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Uživatel nemá profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s a přátelé" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Žádný takový uživatel." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Umístění" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Žádné takové oznámení." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Neplatná adresa '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Přezdívku již někdo používá. Zkuste jinou" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Nelze uložin informace o obrázku" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nové sdělení" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nové sdělení" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Není platnou přezdívkou." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Uživatel nemá profil." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Neodeslal jste nám profil" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Žádný takový uživatel." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Nelze aktualizovat uživatele" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Nastavení uloženo" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Žádné výsledky." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Uživatel nemá profil." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Nelze uložit profil" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " +"Zde může spravovat vaše OpenID" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Nastavené Profilu" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší " +"emailovou adresu uloženou u vašeho účtu." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Byl jste identifikován. Zadejte nové heslo" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Žádost o obnovu hesla" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Chyba v ověřovacím kódu" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Odběr autorizován" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Žádné takové oznámení." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Žádný takový uživatel." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1 od teď naslouchá tvým sdělením v %2" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Nelze aktualizovat uživatele" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Nelze aktualizovat uživatele" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1 statusů na %2" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblog od %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Všechny odběry" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Nastavené Profilu" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Neodeslal jste nám profil" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problém při ukládání sdělení" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Uživatel nemá profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Upload" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Změnit heslo" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Připojit" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Hledat" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Přihlásit" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Žádný takový uživatel." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Žádný takový uživatel." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Žádný obsah!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Hledat" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Stránka není platnou URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Žádné takové oznámení." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nelze přesměrovat na server: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Již jste přihlášen" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nelze přesměrovat na server: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Neodeslal jste nám profil" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nelze vytvořit OpenID z: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nepodporovaný formát obrázku." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Úživatel, kterému nasloucháte neexistuje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Neautorizován." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Neznámá verze OMB protokolu." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Žádné takové oznámení." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Žádné takové oznámení." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " +"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Všechny položky obsahující \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Není platnou adresou profilu (není YADIS dokumentem)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nelze získat řetězec požadavku." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Odpovědi na %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Feed sdělení pro %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Sdělení" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " +"je:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při zamítání odběru" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nelze přečíst adresu obrázku '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Neplatný typ obrázku pro '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Nelze přesměrovat na server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Nové sdělení" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Nelze přesměrovat na server: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpovědi na %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problém při ukládání sdělení" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Žádný potvrzující kód." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed sdělení pro %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1 od teď naslouchá tvým sdělením v %2" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " od " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Nové sdělení" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Vytvořit nový účet" @@ -4842,10 +7592,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Chyba při vkládání nového sdělení" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na " -#~ "vaší emailovou adresu uloženou u vašeho účtu." diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo index 335b267155d3ccfb26d974791c90a26b57617d37..4cb3b2b5ad1bccbd832f1df07c348e66e187b0b0 100644 GIT binary patch delta 29091 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 bE3!@Uuegls&C4zLeQ&3MnfjIbIDP*g-&s2E delta 20819 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 diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index ed02528794..8f5b44600d 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-04-28 00:01+0000\n" "Last-Translator: Dawid Jan \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Suche im Stream nach \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,18 +37,20 @@ msgid " from " msgstr "von" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s Antworten an %2$s" # Nedd a concrete example with full data #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -99,11 +101,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine Zeit\n" +"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " +"Zeit\n" "\n" "Schöne Grüße von %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." @@ -126,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s Status auf %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s öffentlicher Stream" @@ -154,34 +161,48 @@ msgstr "%s öffentlicher Stream" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s und Freunde" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s Status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +210,8 @@ msgstr "" "(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " "Mailadresse erhalten.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +220,8 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." @@ -212,32 +235,36 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " "Pflicht." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 oder mehr Zeichen" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 oder mehr Zeichen, und nicht vergessen!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 oder mehr Buchstaben. Pflicht." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -247,6 +274,7 @@ msgstr "" "hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -282,7 +310,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-Methode nicht gefunden!" @@ -305,16 +360,23 @@ msgstr "API-Methode nicht gefunden!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-Methode im Aufbau." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Über" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Akzeptieren" @@ -325,6 +387,9 @@ msgstr "Akzeptieren" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Hinzufügen" @@ -342,29 +407,31 @@ msgstr "OpenIDs hinzufügen oder löschen" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " "Zeile)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle Abonnements" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle Aktualisierungen für %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" @@ -374,30 +441,37 @@ msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Bereits eingeloggt." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Bereits abonniert!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonnement bestätigen" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatisch einloggen; nicht bei gemeinsam genutzten PCs einsetzen!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -407,15 +481,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar aktualisiert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -426,6 +504,7 @@ msgstr "" "Freundeliste hinzugefügt?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -434,7 +513,7 @@ msgstr "" "(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Warte auf die Bestätigung dieser Telefonnummer." @@ -445,6 +524,8 @@ msgstr "Ältere" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografie" @@ -452,16 +533,18 @@ msgstr "Biografie" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Die Nachricht konnte nicht gelöscht werden." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Konnte Avatar-URL nicht öffnen '%s'" @@ -469,6 +552,8 @@ msgstr "Konnte Avatar-URL nicht öffnen '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Konnte neues Passwort nicht speichern" @@ -476,31 +561,34 @@ msgstr "Konnte neues Passwort nicht speichern" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Abbrechen" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Konnte kein OpenID consumer Objekt erzeugen." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Konnte diese Jabber ID nicht normalisieren" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Ändern" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Ändere die E-Mail Verarbeitung" @@ -510,11 +598,12 @@ msgid "Change password" msgstr "Passwort ändern" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Ändere dein Passwort" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" @@ -524,6 +613,9 @@ msgstr "Ändern der Profileinstellungen" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bestätigen" @@ -536,12 +628,14 @@ msgstr "Adresse bestätigen" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bestätigung abgebrochen." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bestätigungscode" @@ -550,7 +644,8 @@ msgstr "Bestätigungscode" msgid "Confirmation code not found." msgstr "Bestätigungscode nicht gefunden." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -585,20 +680,24 @@ msgstr "" "zu erfahren" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Verbinden" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Verbinde bestehendes Konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Konnte OpenID-Formular nicht erstellen: %s" @@ -606,35 +705,39 @@ msgstr "Konnte OpenID-Formular nicht erstellen: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Konnte nicht zum Server umleiten: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Konnte Avatarinfo nicht speichern" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Neue Profildaten konnten nicht gespeichert werden." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Die Gegenseite konnte Dich nicht abonnieren." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Konnte nicht abbonieren." @@ -654,15 +757,17 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mailbestätigung nicht löschen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Konnte Abonnement nicht löschen." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Konnte keine Statusmeldungen finden." @@ -675,29 +780,38 @@ msgstr "Konnte keinen Anfrage-Token bekommen." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Konnte keinen Bestätigungscode einfügen." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Konnte Profil nicht speichern." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Autosubscribe konnte nicht aktiviert werden." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Konnte Nutzereintrag nicht schreiben" @@ -713,42 +827,48 @@ msgstr "Konnte Nutzereintrag nicht schreiben" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Erstellen" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Neuen Nutzer mit diesem Nicknamen erstellen." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Neues Konto anlegen" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Erzeugen eines Kontos zu einer OpenID, die schon einem Nutzer gehört." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Aktuelle für den SMS Dienst bestätigte Telefon Nummer" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Aktuelle bestätigte E-Mail Adresse" @@ -757,23 +877,27 @@ msgid "Currently" msgstr "Momentan" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Datenbankfehler beim Einfügen der Antwort: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Notiz löschen" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beschreibe dich selbst in 140 Zeichen" @@ -781,11 +905,13 @@ msgstr "Beschreibe dich selbst in 140 Zeichen" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-Mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-Mail Adresse" @@ -795,39 +921,43 @@ msgid "Email Settings" msgstr "E-Mail Einstellungen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Diese E-Mail Adresse existiert bereits." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bestätigung der E-Mail Adresse" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "E-Mail Adresse, z.B. \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "E-Mail Adressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Gib einen Spitznamen oder eine E-Mail Adresse ein." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Fehler beim Autorisieren des Tokens" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Fehler beim Verbinden des Nutzers mit der OpenID." @@ -838,39 +968,46 @@ msgstr "Fehler beim Verbinden des Nutzers." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fehler beim Einfügen des Avatars" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Neues Profil konnte nicht angelegt werden" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fehler beim Einfügen des entfernten Profils" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fehler beim Speichern der Adressbestätigung." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fehler beim Speichern des entfernten Profils" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fehler bei Speichern des Profils." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fehler beim Speichern des Nutzers." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fehler beim Speichern des Nutzers, ungültig." @@ -879,6 +1016,9 @@ msgstr "Fehler beim Speichern des Nutzers, ungültig." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fehler bei den Nutzereinstellungen." @@ -889,6 +1029,7 @@ msgstr "Fehler beim Update des Profils" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fehler beim Update des entfernten Profils" @@ -898,33 +1039,36 @@ msgid "Error with confirmation code." msgstr "Fehler beim Bestätigungscode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Nick wird bereits verwendet" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Aktualisierung des Avatars fehlgeschlagen." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed der Freunde von %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed der Antworten an %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed für den Tag %s" @@ -939,7 +1083,7 @@ msgstr "Durchsuche den Inhalt der Notices" msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -952,6 +1096,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Vollständiger Name" @@ -960,23 +1109,33 @@ msgstr "Vollständiger Name" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hilfe" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Startseite" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -984,22 +1143,28 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Ich möchte Einträge per E-Mail veröffentlichen." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM Adresse" @@ -1009,7 +1174,7 @@ msgid "IM Settings" msgstr "IM Einstellungen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1017,7 +1182,7 @@ msgstr "" "Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort " "an, um deine OpenID zu verknüpfen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1025,7 +1190,7 @@ msgstr "" "Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " "ein und klicke auf \"Hinzufügen\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1037,25 +1202,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Eingehende E-Mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Eingehende E-Mail Adresse entfernt" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Altes Passwort falsch" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Falscher Benutzername oder Passwort." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1064,30 +1235,31 @@ msgstr "" "hinterlegte E-Mailadresse geschickt." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ungültiger Avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ungültige E-Mail Adresse: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ungültige Homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ungültige Lizenz-URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ungültiger Nachrichteninhalt" @@ -1102,13 +1274,13 @@ msgid "Invalid notice url" msgstr "Ungültige Nachrichten-URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ungültige Profil-URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ungültige Profil-URL (falsches Format)" @@ -1126,28 +1298,35 @@ msgstr "Ungültige Größe." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Einladung(en) verschickt" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Einladung(en) an folgende Personen geschickt:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Einladen" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Lade neue Leute ein" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1159,11 +1338,12 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1174,12 +1354,14 @@ msgstr "" "Programm oder GTalk aufgenommen hast." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Sprache" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" @@ -1188,7 +1370,15 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Aufenthaltsort" @@ -1197,7 +1387,12 @@ msgstr "Aufenthaltsort" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." @@ -1206,18 +1401,22 @@ msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Einloggen" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Mit [OpenID](%%doc.openid%%) Konto einloggen" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1228,22 +1427,26 @@ msgstr "" "[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " "[OpenID](%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Abmelden" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Längerer Name, bevorzugt dein \"echter\" Name" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Passwort vergessen?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Neue Mailadresse für Postings aktivieren; die alte wird automatisch " @@ -1256,64 +1459,74 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Einstellen, wie und wann du Emails von %%site.name%% bekommst." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Mitglied seit" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog von %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" "Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" -"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter " -"%s." +"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" +"s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Meine Texte und Daten sind verfügbar unter" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Neu" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Neue E-Mail Adresse um auf %s zu schreiben" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Neue Eingangs-Emailadresse hinzugefügt." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Neuer Nutzername" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Neue Nachricht" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Neues Passwort" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt eingeloggt." @@ -1323,7 +1536,13 @@ msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt eingeloggt." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nutzername" @@ -1332,7 +1551,12 @@ msgstr "Nutzername" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." @@ -1341,49 +1565,60 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " "Leerzeichen sind nicht erlaubt." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Nutzername nicht erlaubt." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Nutzername des Nutzers, dem du folgen möchtest" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nutzername oder E-Mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nein" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Keine Jabber-ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Keine Bestätigungsanfrage!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Kein Netzanbieter ausgewählt." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Kein Code eingegeben" @@ -1395,11 +1630,15 @@ msgstr "Kein Bestätigungs-Code." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Kein Inhalt!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Keine E-Mail Adresse." @@ -1408,7 +1647,9 @@ msgid "No id." msgstr "Keine ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Keine Eingangs-Emailadresse" @@ -1419,6 +1660,7 @@ msgstr "Der entferne Server hat keinen Nutzernamen geliefert." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Kein Nutzername." @@ -1426,12 +1668,14 @@ msgstr "Kein Nutzername." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Keine Telefonnummer." @@ -1441,7 +1685,8 @@ msgid "No profile URL returned by server." msgstr "Der entfernte Server hat keine Profil-URL geliefert." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Der Nutzer hat keine registrierte E-Mailadresse." @@ -1453,7 +1698,7 @@ msgstr "Keine Anfrage gefunden!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Keine Ergebnisse" @@ -1465,13 +1710,17 @@ msgstr "Keine Größe." # Duplicate with: "No status with that ID found." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Keine Nachricht mit dieser ID gefunden." # Duplicate with: "No status found with that ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Keine Nachricht mit dieser ID gefunden." @@ -1481,13 +1730,15 @@ msgid "No such OpenID." msgstr "Diese OpenID ist nicht bekannt." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Unbekanntes Dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Unbekannte Nachricht." @@ -1525,12 +1776,22 @@ msgstr "Unbekanntes Abonnement" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Unbekannter Benutzer." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Kein Benutzer mit dieser E-Mail Adresse oder mit diesem Nutzernamen." @@ -1544,32 +1805,38 @@ msgid "Not a recovery code." msgstr "Kein Wiederherstellungscode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Kein registrierter Nutzer." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ungültige Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ungültige OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ungültige E-Mail-Adresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -1577,6 +1844,11 @@ msgstr "Ungültige E-Mail-Adresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ungültiger Nutzername." @@ -1596,7 +1868,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Kein Bild oder defekte Datei." @@ -1607,11 +1880,13 @@ msgstr "Nicht autorisiert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Unerwartete Antwort!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Nicht gefunden" @@ -1627,11 +1902,15 @@ msgstr "Nicht gefunden" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Nicht eingeloggt." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Nicht abonniert!" @@ -1648,39 +1927,44 @@ msgid "Notice feed for %s" msgstr "Feed der Nachrichten von %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Nachricht hat kein Profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Nachrichten" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Altes Passwort" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Account erstellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID Automatische Übertragung" @@ -1688,29 +1972,34 @@ msgstr "OpenID Automatische Übertragung" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Anmeldung" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-Authentifizierung abgebrochen." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-Authentifizierung fehlgeschlagen: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-Fehler: %s" @@ -1726,13 +2015,14 @@ msgid "OpenID settings" msgstr "OpenID-Einstellungen" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " "anfügen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Unvollständiger Upload" @@ -1742,34 +2032,46 @@ msgstr "Unvollständiger Upload" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passwort" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Passwort und seine Bestätigung stimmen nicht überein." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passwort muss mehr als 6 Zeichen enthalten" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Wiederherstellung des Passworts angefordert" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Passwort gespeichert." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passwörter stimmen nicht überein." @@ -1789,14 +2091,17 @@ msgid "People search" msgstr "Suche nach anderen Nutzern" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Eigene" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Private Nachricht" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" @@ -1811,7 +2116,7 @@ msgstr "" "\"Abbrechen\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." @@ -1820,7 +2125,9 @@ msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Einstellungen" @@ -1829,42 +2136,52 @@ msgstr "Einstellungen" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Einstellungen gesichert." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Bevorzugte Sprache" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privatsphäre" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil-URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil Einstellungen" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil unbekannt" @@ -1873,17 +2190,19 @@ msgid "Public Stream Feed" msgstr "Feed des öffentlichen Streams" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Öffentliche Zeitleiste" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "MicroID für meine Emailadresse veröffentlichen." @@ -1893,12 +2212,14 @@ msgid "Recent Tags" msgstr "Neueste Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Wiederherstellung" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Stelle Passwort wieder her" @@ -1911,37 +2232,45 @@ msgstr "Wiederherstellungscode für unbekannten Nutzer." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrierung nicht gestattet" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registrierung erfolgreich" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Ablehnen" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Anmeldedaten merken" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Entferntes Profil ohne ein passendes Profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Entferntes Abonnement" @@ -1955,6 +2284,9 @@ msgstr "Entferntes Abonnement" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Entfernen" @@ -1963,7 +2295,7 @@ msgstr "Entfernen" msgid "Remove OpenID" msgstr "Entferne OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1972,34 +2304,41 @@ msgstr "" "Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Antworten" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Antworten an %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Zurücksetzen" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Passwort zurücksetzen" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Telefonnummer" @@ -2008,17 +2347,18 @@ msgstr "SMS Telefonnummer" msgid "SMS Settings" msgstr "SMS Einstellungen" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS Konfiguration" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Gleiches Passwort wie zuvor" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." @@ -2031,12 +2371,21 @@ msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Suchen" @@ -2046,7 +2395,7 @@ msgid "Search Stream Feed" msgstr "Stream-Feed suchen" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2056,7 +2405,7 @@ msgstr "" "Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " "Zeichen bestehen." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2067,33 +2416,38 @@ msgstr "" "mindestens 3 Zeichen bestehen." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Wähle einen Netzanbieter" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Senden" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Schicke ein Mail an diese Adresse um eine Nachricht zu posten." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Informiere mich über neues Abonnements per Mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2102,17 +2456,20 @@ msgstr "" "meinem Netzbetreiber entstehen können." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit " -"Jabber/GTalk." +"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" +"GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Einstellungen" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Einstellungen gespeichert." @@ -2132,27 +2489,32 @@ msgid "Something weird happened." msgstr "Etwas eigenartiges ist passiert." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, keinen eingehenden E-Mails gestattet." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, das ist nicht deine Addresse für eingehende E-Mails." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Quellcode" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiken" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Gespeicherte OpenID nicht gefunden." @@ -2160,24 +2522,28 @@ msgstr "Gespeicherte OpenID nicht gefunden." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abonnieren" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenten" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement autorisiert" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement abgelehnt" @@ -2185,28 +2551,35 @@ msgstr "Abonnement abgelehnt" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfehler beim hochladen der Datei." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Volltextsuche" @@ -2226,6 +2599,7 @@ msgid "That confirmation code is not for you!" msgstr "Dieser Bestätigungscode ist nicht für dich!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Diese E-Mail Adresse gehört einem anderen Nutzer." @@ -2235,65 +2609,75 @@ msgid "That file is too big." msgstr "Diese Datei ist zu groß." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Diese JabberID hast du schon angegeben." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Dies ist bereits deine E-Mail Adresse." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Dies ist bereits deine Telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine JabberID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Dies ist nicht deine E-Mail Adresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Dies ist nicht deine Telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Das ist die falsche IM Adresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Die Bestätigungsnummer ist falsch." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Die Adresse \"%s\" wurde für dein Konto bestätigt." @@ -2302,11 +2686,14 @@ msgstr "Die Adresse \"%s\" wurde für dein Konto bestätigt." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Die Adresse wurde entfernt." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2316,7 +2703,8 @@ msgstr "" "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "bestätigt werden. Dein Abonnement-Token ist:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2327,35 +2715,40 @@ msgstr "" "vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dies sind die Leute, die %ss Nachrichten lesen." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dies sind die Leute, die deine Nachrichten lesen." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dies sind die Leute, deren Nachrichten %s liest." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dies sind die Leute, deren Nachrichten du liest." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch " "abonniert." -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2364,7 +2757,7 @@ msgstr "" "klicke auf \"Senden\", um zu deinem OpenID-Anbieter zu gelangen." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2379,6 +2772,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Diese Methode benötigt ein POST oder DELETE." @@ -2387,25 +2783,37 @@ msgstr "Diese Methode benötigt ein POST oder DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Diese Methode benötigt ein POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Zeitzone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Keine Zeitzone ausgewählt." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2418,19 +2826,22 @@ msgstr "" "dann gib deine Profil-URL unten an." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" @@ -2442,15 +2853,22 @@ msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Unerwarteter Passwortreset." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Unbekannter Befehl" @@ -2481,38 +2899,47 @@ msgstr "Abbestellen" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Nicht unterstützte OMB-Version" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Bildformat wird nicht unterstützt." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Updates via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Updates via Instant Messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates von %1$s und Freunden auf %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Hochladen" @@ -2534,12 +2961,15 @@ msgid "Upload a new profile image" msgstr "Neues Bild für dein Profil hochladen" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Wird nur für Updates, wichtige Mitteilungen und zur " @@ -2565,11 +2995,16 @@ msgstr "Aufgeführte Nutzer existiert nicht." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Benutzer hat kein Profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Benutzername" @@ -2578,29 +3013,33 @@ msgid "User not found." msgstr "Benutzer nicht gefunden." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Was ist los, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Wo du bist, z.B. \"Stadt, Gebiet, Land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Falscher Bildtyp für '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Falsche Bildgröße bei '%s'" @@ -2608,7 +3047,9 @@ msgstr "Falsche Bildgröße bei '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2631,11 +3072,12 @@ msgid "You are already logged in!" msgstr "Du bist bereits angemeldet!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du hast diese Benutzer bereits abonniert:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Der angebene Benutzer gehört nicht zu Deinem Freunde-Netzwerk" @@ -2653,7 +3095,7 @@ msgstr "Du kannst ein neues Konto erstellen, um Nachrichten zu verschicken." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kannst SMS per Mail empfangen von %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2662,6 +3104,7 @@ msgstr "" "klickst." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2670,7 +3113,8 @@ msgstr "" "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " "senden. Stelle deine Adresse und Einstellungen unten ein." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2681,24 +3125,25 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kannst ein lokales Abonnement erstellen!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Dieses Profil hast du uns nicht geschickt" -#: ../lib/mail.php:147 -#, php-format -#, fuzzy +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, fuzzy, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -2719,18 +3164,20 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 #, fuzzy msgid "You may not delete another user's status." msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#, php-format -#, fuzzy +#: actions/invite.php:41 +#, fuzzy, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 #, fuzzy msgid "" "You will be notified when your invitees accept the invitation and register " @@ -2740,21 +3187,22 @@ msgstr "" "die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " "wachsen!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Deine OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Dein Benutzername oder E-Mail Adresse auf diesem Server." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2763,47 +3211,57 @@ msgstr "" "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " "Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "vor einem Tag" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "vor einer Minute" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "vor einem Monat" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "vor einem Jahr" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "vor einer Stunde" @@ -2826,13 +3284,15 @@ msgid "reply" msgstr "antworten" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 #, fuzzy msgid "same as password above" msgstr "Gleiches Passwort wie oben" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "Nicht unterstützter Dateityp" @@ -2853,6 +3313,26 @@ msgstr "Früher" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 #, fuzzy msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -2863,6 +3343,7 @@ msgid "This notice is not a favorite!" msgstr "Diese Nachricht ist kein Favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." @@ -2871,20 +3352,23 @@ msgstr "Konnte Favoriten nicht löschen." msgid "Favor" msgstr "Zu Favoriten hinzufügen" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 #, fuzzy msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 #, fuzzy msgid "Send me email when someone sends me a private message." msgstr "" "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 #, fuzzy msgid "This notice is already a favorite!" msgstr "Diese Nachricht ist bereits ein Favorit!" @@ -2892,6 +3376,9 @@ msgstr "Diese Nachricht ist bereits ein Favorit!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." @@ -2902,26 +3389,24 @@ msgstr "Aus Favoriten entfernen" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:110 +#, fuzzy, php-format msgid "%s favorite notices" msgstr "%ss Favoriten" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:114 +#, fuzzy, php-format msgid "Feed of favorite notices of %s" msgstr "Feed von %ss Favoriten" #: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Inbox for %s - page %d" msgstr "Posteingang von %s - Seite %d" #: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Inbox for %s" msgstr "Posteingang von %s" @@ -2933,8 +3418,7 @@ msgstr "" "enthält." #: actions/invite.php:178 actions/invite.php:213 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" @@ -2959,24 +3443,33 @@ msgid "Login with your username and password. " msgstr "Anmelden mit deinem Benutzernamen und Passwort. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 #, fuzzy msgid "That's too long. Max message size is 140 chars." msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Kein Empfänger angegeben." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 #, fuzzy msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." @@ -2984,11 +3477,13 @@ msgstr "" "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Kein solcher Benutzer" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Neue Nachricht" @@ -2998,8 +3493,7 @@ msgid "Notice without matching profile" msgstr "Nachricht ohne entsprechendes Profil" #: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "" "Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " @@ -3036,8 +3530,7 @@ msgstr "" "Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen." @@ -3052,6 +3545,11 @@ msgstr "Du kannst dein persönliches Profil hier aktualisieren " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #, fuzzy msgid "User without matching profile" msgstr "Benutzer ohne passendes Profil" @@ -3085,6 +3583,8 @@ msgid "New password successfully saved. " msgstr "Neues Passwort erfolgreich gespeichert. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." @@ -3103,19 +3603,20 @@ msgid "(You should receive a message by email momentarily, with " msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 -#, php-format -#, fuzzy +#: actions/showfavorites.php:147 +#, fuzzy, php-format msgid "Feed for favorites of %s" msgstr "Feed der Favoriten von %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 #, fuzzy msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." @@ -3125,20 +3626,18 @@ msgstr "Konnte Favoriten nicht abrufen." msgid "No such message." msgstr "Keine derartige Nachricht." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient may read this message." msgstr "Nur der Absender und Empfänger können diese Nachricht lesen." #: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "Nachricht an %1$s auf %2$s" #: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" @@ -3148,42 +3647,54 @@ msgid "Send a message" msgstr "Eine Nachricht verschicken" #: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Mobile carrier for your phone. " msgstr "Mobilfunkanbieter deines Telefons. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direkte Nachricht an %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle an %s gesendeten direkten Nachrichten" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Von dir gesendete direkte Nachrichten" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle von %s gesendeten direkten Nachrichten" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Fehlender Nachrichtentext!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Empfänger nicht gefunden." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 #, fuzzy msgid "Can't send direct messages to users who aren't your friend." msgstr "" @@ -3191,27 +3702,30 @@ msgstr "" "du nicht befreundet bist." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#, php-format -#, fuzzy +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, fuzzy, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoriten von %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#, php-format -#, fuzzy +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format msgid "%s updates favorited by %s / %s." msgstr "%s Updates in den Favoriten von %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s hat deine Nachricht als Favorit gespeichert" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" @@ -3228,14 +3742,17 @@ msgstr "" "zu übermitteln, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter Einstellungen" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter Konto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Derzeit bestätigter Twitter Account." @@ -3244,6 +3761,7 @@ msgid "Twitter Username" msgstr "Twitter Benutzername" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Keine Leerzeichen, bitte." @@ -3252,19 +3770,23 @@ msgid "Twitter Password" msgstr "Twitter Passwort" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Sende meine Nachrichten automatisch an Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 #, fuzzy msgid "Send local \"@\" replies to Twitter." msgstr "Sende lokale \"@\" Antworten an Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Hier meine Twitter Freunde abonnieren." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 #, fuzzy msgid "" "Username must have only numbers, upper- and lowercase letters, and " @@ -3274,46 +3796,56 @@ msgstr "" "(_) enthalten. Maximal 15 Zeichen." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 #, fuzzy msgid "Could not verify your Twitter credentials!" msgstr "Das Überprüfen deiner Twitter Berechtigungen war nicht erfolgreich!" #: actions/twittersettings.php:137 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "" "Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Konnte Twitter Einstellungen nicht speichern!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter Einstellungen gespeichert." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Das ist nicht dein Twitter Konto." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Konnte Twitter Benutzer nicht entfernen." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter Account entfernt." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Konnte Twitter Einstellungen nicht speichern." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter Einstellungen gespeichert." @@ -3333,21 +3865,22 @@ msgid "The subscription has been rejected, but no " msgstr "Das Abonnement wurde abgelehnt, aber kein " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 #, fuzzy msgid "Command results" msgstr "Befehl Ausgabe" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 #, fuzzy msgid "Command complete" msgstr "Befehl ausgeführt" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 #, fuzzy msgid "Command failed" msgstr "Befehl fehlgeschlagen" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 #, fuzzy msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." @@ -3358,95 +3891,116 @@ msgid "Subscriptions: %1$s\n" msgstr "Abonnements: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 #, fuzzy msgid "User has no last notice" msgstr "Benutzer hat keine letzte Nachricht" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 #, fuzzy msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Vollständiger Name: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, fuzzy, php-format msgid "Location: %s" msgstr "Standort: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Über: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direkte Nachricht an %s abgeschickt" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Fehler beim Senden der Nachricht" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 #, fuzzy msgid "Specify the name of the user to subscribe to" msgstr "Gib den Namen des Benutzers den du abonnieren möchtest an" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "%s abonniert" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 #, fuzzy msgid "Specify the name of the user to unsubscribe from" msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" -#: classes/Command.php:295 classes/Command.php:335 -#, php-format -#, fuzzy +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "%s nicht mehr abonniert" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 #, fuzzy msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Benachrichtigung aktiviert." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." @@ -3454,12 +4008,12 @@ msgstr "Konnte Benachrichtigung nicht aktivieren." msgid "Commands:\n" msgstr "Befehle:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 #, fuzzy msgid "Could not insert message." msgstr "Konnte Nachricht nicht einfügen." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 #, fuzzy msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." @@ -3478,7 +4032,7 @@ msgstr "" "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Neue private Nachricht von %s" @@ -3492,7 +4046,7 @@ msgstr "" "%1$s (%2$s) hat dir einen private Nachricht geschickt:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." @@ -3503,32 +4057,39 @@ msgid "This form should automatically submit itself. " msgstr "Dieses Formular sollte sich automatisch abschicken. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoriten" #: lib/personal.php:66 lib/personalgroupnav.php:114 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, fuzzy, php-format msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Posteingang" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Deine eingehenden Nachrichten" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Postausgang" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Deine gesendeten Nachrichten" @@ -3541,15 +4102,20 @@ msgid "Twitter integration options" msgstr "Twitter Integrationseinstellungen" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "An" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 #, fuzzy msgid "Could not parse message." msgstr "Konnte Nachricht nicht parsen." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s und Freunde, Seite %d" @@ -3559,21 +4125,31 @@ msgid "You can upload your personal avatar." msgstr "Du kannst dein persönliches Avatar hochladen." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar Einstellungen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Zuschneiden" @@ -3591,38 +4167,47 @@ msgid "There was a problem with your session token. " msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 #, fuzzy msgid "Pick a square area of the image to be your avatar" msgstr "" "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 #, fuzzy msgid "Lost our file data." msgstr "Daten verloren." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Daten verloren." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Unbekannter Dateityp" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Kein Profil angegeben." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Kein Benutzer-Profil mit dieser ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Benutzer blockieren" @@ -3630,11 +4215,11 @@ msgstr "Benutzer blockieren" msgid "Are you sure you want to block this user? " msgstr "Bist du sicher, dass du diesen Benutzer blockieren möchtest? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 #, fuzzy msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." @@ -3654,41 +4239,59 @@ msgstr "Du bist dabei diese Nachricht dauerhaft zu entfernen. " msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Gruppe %s bearbeiten" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 #, fuzzy msgid "Inboxes must be enabled for groups to work" msgstr "Posteingänge müssen aktiviert sein, damit Gruppen funktionieren" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Kein Benutzername" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Keine derartige Gruppe" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." @@ -3698,14 +4301,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Der Benutzername darf nur aus Kleinbuchstaben bestehen " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Einstellungen gespeichert." @@ -3724,7 +4328,8 @@ msgstr "Neue E-Mailadresse um Nachrichten auf %s hinzuzufügen; " msgid "Send me email when someone " msgstr "Schicke mir eine E-Mail, wenn jemand " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." @@ -3739,14 +4344,13 @@ msgstr "" "Ein Bestätigungscode wurde an die E-Mailadresse geschickt, die du " "hinzugefügt hast." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 #, fuzzy msgid "Server error - couldn't get user!" msgstr "Serverfehler - Benutzer nicht gefunden!" #: actions/facebookhome.php:196 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " @@ -3755,56 +4359,70 @@ msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " msgid "Allow %s to update my Facebook status" msgstr "Erlaube %s meinen Facebook Status zu aktualisieren" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Überspringen" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Kein Inhalt!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 #, fuzzy msgid "Pagination" msgstr "Seitenerstellung" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Später" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Vorher" -#: actions/facebookinvite.php:70 -#, php-format -#, fuzzy +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, fuzzy, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Danke, dass du deine Freunde zu %s einlädst" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Einladung(en) an folgende Personen geschickt:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du wurdest von %s angestupst" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Lade deine Freunde ein %s zu nutzen" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Freunde, die %s bereits benutzen:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Einladungen versenden" @@ -3816,7 +4434,8 @@ msgstr "Konnte Facebook Benutzer nicht entfernen." #: actions/facebooksettings.php:65 #, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." +msgstr "" +"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." #: actions/facebooksettings.php:67 #, fuzzy @@ -3854,13 +4473,15 @@ msgstr "Wenn du %s automatisch aktualisieren lassen möchtest " msgid "Sync preferences" msgstr "Synchronisationseinstellungen" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Beliebte Nachrichten" @@ -3874,33 +4495,34 @@ msgid "The most popular notices on the site right now." msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 #, fuzzy msgid "Featured users" msgstr "Featured Benutzer" #: actions/featured.php:71 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Featured users, page %d" msgstr "Featured Benutzer, Seite %d" #: actions/featured.php:99 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "A selection of some of the great users on %s" msgstr "Eine Auswahl der tollen Benutzer auf %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 #, fuzzy msgid "That user has blocked you from subscribing." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Keine ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Gruppen-Logo" @@ -3908,12 +4530,14 @@ msgstr "Gruppen-Logo" msgid "You can upload a logo image for your group." msgstr "Du kannst ein Logo für Deine Gruppe hochladen." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Logo aktualisiert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Aktualisierung des Logos fehlgeschlagen." @@ -3933,7 +4557,8 @@ msgid "A list of the users in this group." msgstr "Liste der Benutzer in dieser Gruppe." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppen" @@ -3943,12 +4568,12 @@ msgid "Groups, page %d" msgstr "Gruppen, Seite %d" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% Gruppen - finde und tausche dich aus mit " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Neue Gruppe erstellen" @@ -3957,9 +4582,10 @@ msgstr "Neue Gruppe erstellen" #, fuzzy, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " +msgstr "" +"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Gruppen-Suche" @@ -3984,21 +4610,21 @@ msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Es wurde ein Bestätigungscode gesendet " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s ist der Gruppe %s beigetreten" @@ -4008,16 +4634,19 @@ msgstr "%s ist der Gruppe %s beigetreten" msgid "Inboxes must be enabled for groups to work." msgstr "Damit Gruppen funktionieren müssen Posteingänge aktiviert sein." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Keine derartige Gruppe." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." @@ -4028,22 +4657,26 @@ msgid "You may not leave a group while you are its administrator." msgstr "" "Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Konnte Mitgliedseintrag nicht finden." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s hat die Gruppe %s verlassen" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 #, fuzzy msgid "Login to site" msgstr "An Seite anmelden" @@ -4056,17 +4689,19 @@ msgstr "Kein aktueller Status" msgid "New group" msgstr "Neue Gruppe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." @@ -4080,12 +4715,15 @@ msgstr "Das ist zu lang. " msgid "Don't send a message to yourself; " msgstr "Schreibe dir selbst keine Nachrichten; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Nachricht hinzugefügt" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Fehler" @@ -4104,7 +4742,7 @@ msgstr "Stups abgeschickt" msgid "Nudge sent!" msgstr "Stups gesendet!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID Anmeldung" @@ -4131,11 +4769,13 @@ msgstr "URL Auto-Verkürzung" msgid "Service" msgstr "Dienst" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "URL Auto-Kürzungs Dienst." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)" @@ -4144,17 +4784,18 @@ msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)" msgid "Change your password." msgstr "Ändere dein Passwort," -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Passwort gespeichert" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ungültiger Tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" @@ -4164,12 +4805,13 @@ msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Benutzer die sich selbst mit \"%s\" getagged haben " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profilinformation" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4182,20 +4824,25 @@ msgid "Automatically subscribe to whoever " msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ungültiger Tag: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Konnte öffentlichen Stream nicht abrufen." @@ -4218,11 +4865,13 @@ msgstr "Öffentliche Tag-Wolke" msgid "These are most popular recent tags on %s " msgstr "Das sind die beliebtesten Tags auf %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag-Wolke" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung." @@ -4281,7 +4930,8 @@ msgstr "(Du solltest eine Nachricht per E-Mail erhalten " msgid "That's a local profile! Login to subscribe." msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Antworten an %s, Seite %d" @@ -4291,55 +4941,76 @@ msgstr "Antworten an %s, Seite %d" msgid "%s favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s Gruppe" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s Gruppe, Seite %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Gruppenprofil" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Nachricht" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Nachrichtenfeed der Gruppe %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Mitglieder" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 #, fuzzy msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle Mitglieder" @@ -4356,7 +5027,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Nur der Absender und Empfänger " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, Seite %d" @@ -4367,35 +5038,42 @@ msgid "'s profile" msgstr "s Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Benutzerprofil" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Benutzeraktionen" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Direkte Nachricht an Benutzer verschickt" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nachricht" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Alle Abonnenten" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle Gruppen" @@ -4405,8 +5083,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] " -"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/smssettings.php:128 #, fuzzy @@ -4425,7 +5103,7 @@ msgstr "" "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt " "hast. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Netzanbieter" @@ -4455,8 +5133,7 @@ msgid "%s subscribers" msgstr "%s Abonnenten" #: actions/subscribers.php:52 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%s subscribers, page %d" msgstr "%s Abonnenten, Seite %d" @@ -4490,18 +5167,18 @@ msgstr "Dies sind die Leute, deren Nachrichten " msgid "These are the people whose " msgstr "Dies sind die Leute, deren " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Nachrichten, die mit %s getagt sind, Seite %d" -#: actions/tag.php:66 -#, php-format -#, fuzzy +#: actions/tag.php:66 actions/tag.php:73 +#, fuzzy, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Nachrichten getagt mit \"%s\", neueste zuerst" @@ -4525,7 +5202,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Benutzer taggen" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4538,18 +5215,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " "haben." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Konnte Tags nicht speichern." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4561,21 +5238,24 @@ msgstr "" msgid "No such tag." msgstr "Tag nicht vorhanden." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog getaggt mit %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blockieren des Benutzers fehlgeschlagen." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 #, fuzzy msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Nicht gefunden." @@ -4584,15 +5264,16 @@ msgstr "Nicht gefunden." msgid "Add your Twitter account to automatically send " msgstr "Füge dein Twitter Konto hinzu zum automatischen Versenden von " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter Benutzername" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter Passwort" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter Freunde" @@ -4606,169 +5287,179 @@ msgstr "Für den Benutzernamen gelten nur Nummern, " msgid "Unable to retrieve account information " msgstr "Konnte Kontoinformationen nicht abrufen " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Der entfernte Server hat keine Profil-ID geliefert." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Kein Profil mit dieser ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s Gruppen" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s Gruppen, Seite %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +msgstr "" +"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar hochladen" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 #, fuzzy msgid "Other" msgstr "Sonstige" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 #, fuzzy msgid "Other options" msgstr "Sonstige Optionen" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Hauptnavigation" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 #, fuzzy msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 #, fuzzy msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 #, fuzzy msgid "Connect to IM, SMS, Twitter" msgstr "Verbinde zu IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 #, fuzzy msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 #, fuzzy msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Mit OpenID anmelden" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Neue Nachricht" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 #, fuzzy msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 #, fuzzy msgid "StatusNet software license" msgstr "StatusNet Software Lizenz" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 #, fuzzy msgid "license." msgstr "Lizenz." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Benutzer blockieren" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blockieren" @@ -4782,12 +5473,15 @@ msgstr "Aus Favoriten entfernen" msgid "To use the %s Facebook Application you need to login " msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " ein neues Konto." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Öffentlich" @@ -4809,36 +5503,41 @@ msgstr "Tags filtern" msgid "All" msgstr "Alle" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 #, fuzzy msgid "Choose a tag to narrow list" msgstr "Wähle einen Tag, um die Liste einzuschränken" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 #, fuzzy msgid "Go" msgstr "Los" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Beschreibung" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4848,25 +5547,23 @@ msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" msgid "Group" msgstr "Gruppe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 #, fuzzy msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 -#, php-format -#, fuzzy +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, fuzzy, php-format msgid "Edit %s group properties" msgstr "%s Gruppeneinstellungen bearbeiten" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 -#, php-format -#, fuzzy +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, fuzzy, php-format msgid "Add or edit %s logo" msgstr "%s Logo hinzufügen oder bearbeiten" @@ -4879,8 +5576,7 @@ msgid "Groups with most posts" msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Tags in %s group's notices" msgstr "Tags in den Nachrichten der Gruppe %s" @@ -4899,12 +5595,12 @@ msgstr "Beitreten" msgid "Leave" msgstr "Verlassen" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Anmelden mit einem Benutzernamen und Passwort" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Für ein neues Konto registrieren" @@ -4914,8 +5610,7 @@ msgid "Login or register with OpenID" msgstr "Anmelden oder registrieren mit OpenID" #: lib/mail.php:175 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "Hey, %s.\n" "\n" @@ -4928,19 +5623,18 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s liest ab sofort " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Standort: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 -#, php-format -#, fuzzy +#: lib/mail.php:258 lib/mail.php:257 +#, fuzzy, php-format msgid "" "Bio: %s\n" "\n" @@ -4948,7 +5642,7 @@ msgstr "" "Biografie: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" @@ -4963,47 +5657,55 @@ msgstr "%s$s (%2$s) fragt sich was du so machst " msgid "%1$s just added your notice from %2$s" msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "Von" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nachricht versenden" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Verfügbare Zeichen" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "als Antwort auf" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Notiz löschen" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Löschen" @@ -5024,33 +5726,34 @@ msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stupser" #: lib/personaltagcloudsection.php:56 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Tags in %s's notices" msgstr "Tags in %ss Nachrichten" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 #, fuzzy msgid "(none)" msgstr "(leer)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Öffentlich" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Benutzer-Gruppen" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Aktuelle Tags" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Featured" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Beliebt" @@ -5067,32 +5770,33 @@ msgstr "Finde Gruppen auf dieser Seite" msgid "Untitled section" msgstr "Abschnitt ohne Titel" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Leute, die %s abonniert hat" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Leute, die %s abonniert haben" -#: lib/subgroupnav.php:97 -#, php-format -#, fuzzy +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, fuzzy, php-format msgid "Groups %s is a member of" msgstr "Gruppen zu denen %s gehört" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Dieser Benutzer hat dich blockiert." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" @@ -5106,11 +5810,12 @@ msgid "Top posters" msgstr "Top-Schreiber" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Benutzer freigeben" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Freigeben" @@ -5118,6 +5823,2072 @@ msgstr "Freigeben" msgid "Unsubscribe from this user" msgstr "Lösche dein Abonnement von diesem Benutzer" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s und Freunde" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kannst dein persönliches Avatar hochladen." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar aktualisiert." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " +"ist irreversibel." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kannst ein Logo für Deine Gruppe hochladen." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog von %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Fehler beim Senden der Nachricht" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Suche im Stream nach \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " +"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " +"Telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Erstellen" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Gruppenprofil" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "s Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Postausgang von %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil Einstellungen" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " +"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " +"den Code und die Anweisungen, um ihn zu benutzen." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Kein solcher Benutzer" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " +"zu übermitteln, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" +"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Suche nach Leuten oder Text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Verbinde zu IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Stups" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s hat deine Nachrichten auf %2$s abonniert.\n" +"\n" +"\t%3$s\n" +"\n" +"Gruß,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Suchen" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Unbekanntes Dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Benutzerprofil" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s und Freunde, Seite %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Freigeben des Benutzers fehlgeschlagen." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bestätigungscode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Die Nachricht konnte nicht gelöscht werden." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ungültiger Tag: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Konnte keinen Favoriten erstellen." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Neue Nachricht" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Neue Nachricht" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ungültiger Nutzername." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Kein Profil angegeben." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Benutzer blockieren" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppen" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Konnte Benutzerdaten nicht aktualisieren." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Konnte Twitter Einstellungen nicht speichern!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synchronisationseinstellungen gespeichert." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Keine Ergebnisse" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nachricht" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Konnte Profil nicht speichern." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " +"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil Einstellungen" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" +"Mikro-blogging) Dienst " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" +"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " +"lassen." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Wiederherstellung des Passworts angefordert" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fehler beim Bestätigungscode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abonniere diesen Benutzer" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%ss favorisierte Nachrichten, Seite %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " +"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Kein lokaler Benutzer." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Nachrichten, die mit %s getagt sind" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s liest ab sofort " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed der Nachrichten von %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Diese Nachricht ist bereits ein Favorit!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Diese Nachricht ist kein Favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Konnte öffentlichen Stream nicht abrufen." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Kein Empfänger angegeben." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Konnte keine Statusmeldungen finden." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s Antworten an %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "Lizenz." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s Abonnements" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil Einstellungen" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem bei Speichern der Nachricht." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Nachricht an %1$s auf %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Benutzerprofil" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Hochladen" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändere dein Passwort" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Verbinden" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Suchen" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Liste" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blockieren" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Benutzer blockieren" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s Logo hinzufügen oder bearbeiten" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Kein Inhalt!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Benutzer" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Suchen" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tag nicht vorhanden." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte Nachricht an %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du bist bereits Mitglied dieser Gruppe" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s Gruppen" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Gruppen zu denen %s gehört" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppenaktionen" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Bildformat wird nicht unterstützt." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Aufgeführte Nutzer existiert nicht." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Nicht autorisiert." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unbekannte OMB-Protokollversion." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Unbekannte Nachricht." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Daten verloren." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " +"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " +"[OpenID](%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beschreibe dich selbst in 140 Zeichen" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beschreibe dich selbst und deine " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Konnte keinen Anfrage-Token bekommen." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Nachricht an %1$s auf %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s Gruppe" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Nachricht hinzugefügt" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"bestätigt werden. Dein Abonnement-Token ist:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"vollständig abgelehnt werden. Dein Abonnement-Token ist:" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Konnte Avatar-URL nicht öffnen '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Falscher Bildtyp für '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Konnte nicht zum Server umleiten: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet Software Lizenz" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Stups abgeschickt" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Auf diese Nachricht antworten" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem bei Speichern der Nachricht." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Kein Bestätigungs-Code." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Auf der Seite anmelden" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Wähle einen Netzanbieter" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed der Nachrichten von %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s hat deine Nachricht als Favorit gespeichert" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "von" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Konnte Favoriten nicht löschen." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Notiz löschen" + #~ msgid "Code not yet ready." #~ msgstr "Code noch nicht fertig." @@ -5141,10 +7912,6 @@ msgstr "Lösche dein Abonnement von diesem Benutzer" #~ msgid "Tag a person" #~ msgstr "Tagge eine Person" -#, fuzzy -#~ msgid "List" -#~ msgstr "Liste" - #~ msgid "Icons" #~ msgstr "Icons" diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo index 1846399637aa3abeb1023201791df2a1e610f66e..ffcd47205e526a48cc512d03d7a57286f81552c2 100644 GIT binary patch delta 8582 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 p^eaQxE;IGr%Ln-G+bug4<@Epn diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 4a54996a84..b074e5f63e 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-08 20:21+0000\n" "Last-Translator: Giannis Pappas \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Αναζήτηση ροής για \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "από" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -79,6 +81,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -95,25 +98,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Δημόσια ροή %s" @@ -123,35 +129,48 @@ msgstr "Δημόσια ροή %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s και οι φίλοι του/της" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Κατάσταση του/της %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 -#, php-format -#, fuzzy +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, fuzzy, php-format msgid "%s timeline" msgstr "Χρονοδιάγραμμα του χρήστη %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -159,9 +178,9 @@ msgstr "" "(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " "την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 -#, php-format -#, fuzzy +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " @@ -169,9 +188,9 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 -#, php-format -#, fuzzy +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 +#, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " @@ -183,30 +202,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ή περισσότεροι χαρακτήρες" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -216,6 +239,7 @@ msgstr "" "Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -251,7 +275,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" @@ -274,16 +325,23 @@ msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Περί" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Αποδοχή" @@ -294,6 +352,9 @@ msgstr "Αποδοχή" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Προσθήκη" @@ -311,27 +372,29 @@ msgstr "Προσθήκη ή διαγραφή OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Διεύθυνση" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Όλες οι συνδρομές" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Όλες οι ενημερώσεις για %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" @@ -341,30 +404,37 @@ msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τ #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ήδη συνδεδεμένος." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Είσαι ήδη συνδρομητής!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Εξουσιοδοτημένη συνδρομή" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 #, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" @@ -375,17 +445,20 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#, php-format -#, fuzzy +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" @@ -395,6 +468,7 @@ msgstr "" "λίστα φίλων?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 #, fuzzy msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " @@ -404,7 +478,7 @@ msgstr "" "φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." @@ -416,6 +490,8 @@ msgstr "Προηγούμενο »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Βιογραφικό" @@ -423,17 +499,19 @@ msgstr "Βιογραφικό" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 #, fuzzy msgid "Can't delete this notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "" @@ -441,6 +519,8 @@ msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" @@ -448,31 +528,34 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Ακύρωση" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Απέτυχη η χρήση αντικειμένου OpenID consumer." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Αδυναμία κανονικοποίησης του Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Αλλαγή" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -482,11 +565,12 @@ msgid "Change password" msgstr "Αλλαγή κωδικού" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Αλλάξτε τον κωδικό σας" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" @@ -496,6 +580,9 @@ msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Επιβεβαίωση" @@ -508,12 +595,14 @@ msgstr "Επιβεβαίωση διεύθυνσης" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Η επιβεβαίωση ακυρώθηκε." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -522,9 +611,9 @@ msgstr "" msgid "Confirmation code not found." msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: ../actions/register.php:202 -#, php-format -#, fuzzy +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, fuzzy, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -549,9 +638,8 @@ msgstr "" "δέχεσε μηνύματα στο instant messager σου.\n" "* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " "που έχουν τα ίδια ενδιαφέροντα με σένα. \n" -"* Ενημερώσεις το προφίλ σου [profile " -"settings](%%%%action.profilesettings%%%%) για να μάθουν οι άλλοι περισσότερα " -"για σένα. \n" +"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" +"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" "* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " "μην έχεις μάθει ακόμα. \n" "\n" @@ -559,20 +647,24 @@ msgstr "" "μας." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Σύνδεση" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Σύνδεση με υπάρχων λογαριασμό" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Επικοινωνία" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " @@ -580,35 +672,40 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." +msgstr "" +"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Δε μπόρεσα να σώσω την πληροφορία του avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Απέτυχε η συνδρομή." @@ -628,15 +725,17 @@ msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε to #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." @@ -649,29 +748,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Απέτυχε η αποθήκευση του προφίλ." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." @@ -687,43 +795,49 @@ msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστ #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Απέτυχε η ενημέρωση του χρήστη." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Δημιουργία" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Δημιουργία νέου χρήστη με αυτό το ψευδώνυμο." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Δημιουργία νέου λογαριασμού" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 #, fuzzy msgid "Creating new account for OpenID that already has a user." msgstr "Μετατροπή υπάρχοντος λογαριασμού σε λογαριασμό OpenID." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." @@ -732,23 +846,27 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Διαγραφή μηνύματος" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" @@ -756,11 +874,13 @@ msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέ #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Διεύθυνση Email" @@ -770,39 +890,43 @@ msgid "Email Settings" msgstr "Ρυθμίσεις Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Η διεύθυνση email υπάρχει ήδη." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Επιβεβαίωση διεύθυνσης email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Διευθύνσεις email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "" @@ -813,39 +937,46 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -854,6 +985,9 @@ msgstr "" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -864,6 +998,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -873,33 +1008,36 @@ msgid "Error with confirmation code." msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Συχνές ερωτήσεις" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Ροή φίλων του/της %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Ροή απαντήσεων προς τον/την %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -914,7 +1052,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -927,6 +1065,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Ονοματεπώνυμο" @@ -935,23 +1078,33 @@ msgstr "Ονοματεπώνυμο" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Βοήθεια" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Αρχή" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Αρχική σελίδα" @@ -959,21 +1112,27 @@ msgstr "Αρχική σελίδα" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "ΙΜ" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Διεύθυνση ΙΜ" @@ -983,7 +1142,7 @@ msgid "IM Settings" msgstr "Ρυθμίσεις ΙΜ" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -991,7 +1150,7 @@ msgstr "" "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " "να τον συνδέσετε στο OpenID σας." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -999,7 +1158,7 @@ msgstr "" "Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον " "από κάτω και πατήστε \"Προσθήκη\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1010,25 +1169,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Εισερχόμενο email" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Λάθος παλιός κωδικός" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Λάθος όνομα χρήστη ή κωδικός" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1037,30 +1202,31 @@ msgstr "" "που έχετε καταχωρίσει στον λογαριασμό σας." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1075,13 +1241,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1099,28 +1265,35 @@ msgstr "" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1129,11 +1302,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1141,12 +1315,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1155,7 +1331,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Τοποθεσία" @@ -1164,7 +1348,12 @@ msgstr "Τοποθεσία" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." @@ -1173,18 +1362,22 @@ msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 2 #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Σύνδεση" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1195,22 +1388,26 @@ msgstr "" "ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " "δοκιμάστε το [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Αποσύνδεση" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1221,16 +1418,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Μέλος από" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1240,42 +1439,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Νέο ψευδώνυμο" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Νέος κωδικός" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1285,7 +1492,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Ψευδώνυμο" @@ -1294,7 +1507,12 @@ msgstr "Ψευδώνυμο" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." @@ -1303,47 +1521,58 @@ msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμά #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Το ψευδώνυμο αυτό δεν επιτρέπεται." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Ψευδώνυμο ή email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1355,11 +1584,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1368,7 +1601,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1379,6 +1614,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1386,12 +1622,14 @@ msgstr "" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1401,7 +1639,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1413,7 +1652,7 @@ msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "" @@ -1424,12 +1663,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1439,13 +1682,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1483,12 +1728,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1502,32 +1757,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1535,6 +1796,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1554,7 +1820,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1565,11 +1832,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1585,11 +1854,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1606,39 +1879,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1646,29 +1924,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1684,11 +1967,12 @@ msgid "OpenID settings" msgstr "Ρυθμίσεις OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1698,34 +1982,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Κωδικός" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Οι κωδικοί δεν ταυτίζονται." @@ -1745,14 +2041,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Προσωπικά" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1764,7 +2063,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1773,7 +2072,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Προτιμήσεις" @@ -1782,42 +2083,52 @@ msgstr "Προτιμήσεις" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1826,17 +2137,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1846,12 +2159,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1864,37 +2179,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1908,6 +2231,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1916,41 +2242,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1959,17 +2292,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1982,12 +2316,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -1997,14 +2340,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2012,48 +2355,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2073,27 +2424,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2101,24 +2457,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2126,28 +2486,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2167,6 +2534,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2176,63 +2544,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2241,18 +2619,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2260,40 +2642,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2305,6 +2692,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2313,25 +2703,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2340,18 +2742,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2363,15 +2768,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2400,38 +2812,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2448,12 +2869,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2477,11 +2901,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2490,29 +2919,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2520,7 +2953,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2541,11 +2976,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2563,20 +2999,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2585,21 +3023,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2613,82 +3053,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2710,12 +3164,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2736,6 +3192,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2744,6 +3220,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2751,22 +3228,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2776,11 +3259,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2820,33 +3305,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2900,6 +3396,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2928,6 +3429,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2948,12 +3451,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2961,7 +3467,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2985,51 +3491,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3048,14 +3573,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3064,6 +3592,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3072,24 +3601,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3100,33 +3634,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3143,18 +3687,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3164,89 +3709,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3254,11 +3821,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3273,7 +3840,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3285,7 +3852,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3294,31 +3861,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3331,14 +3906,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s και οι φίλοι του/της" @@ -3348,22 +3928,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Ρυθμίσεις OpenID" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3380,35 +3970,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3416,11 +4015,11 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3437,40 +4036,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Νέο ψευδώνυμο" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3480,16 +4097,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3506,7 +4124,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3519,7 +4138,7 @@ msgstr "Η διεύθυνση email υπάρχει ήδη." msgid "A confirmation code was sent to the email address you added. " msgstr "" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3533,51 +4152,66 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Ροή φίλων του/της %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3621,12 +4255,14 @@ msgstr "" msgid "Sync preferences" msgstr "Προτιμήσεις" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3640,7 +4276,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3654,15 +4291,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3670,12 +4309,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Αποσύνδεση" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3694,7 +4335,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3709,6 +4351,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Δημιουργία νέου λογαριασμού" @@ -3719,7 +4362,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3741,20 +4384,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3763,16 +4406,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3780,21 +4426,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3806,16 +4456,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" @@ -3828,11 +4480,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3849,7 +4504,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ρυθμίσεις OpenID" @@ -3875,11 +4530,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." @@ -3889,17 +4546,18 @@ msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 2 msgid "Change your password." msgstr "Αλλαγή κωδικού" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3909,11 +4567,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3923,21 +4582,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3957,11 +4621,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4010,7 +4676,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4020,52 +4687,73 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Μέλος από" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4080,7 +4768,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4091,31 +4779,38 @@ msgid "'s profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4138,7 +4833,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4197,16 +4892,17 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4228,7 +4924,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4238,17 +4934,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4256,20 +4952,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4277,15 +4976,16 @@ msgstr "" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Όνομα χρήστη στο Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Κωδικός στο Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Φίλοι στο Twitter" @@ -4298,146 +4998,155 @@ msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νού msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Περί" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Δημιουργία νέου λογαριασμού" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Βοήθεια" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4450,12 +5159,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Δημιουργία νέου λογαριασμού" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4475,31 +5187,36 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Περιγραφή" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" @@ -4508,20 +5225,20 @@ msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \" msgid "Group" msgstr "Ομάδα" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Διαχειριστής" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Λογότυπο" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" @@ -4553,11 +5270,11 @@ msgstr "Συμμετοχή" msgid "Leave" msgstr "Αποχώρηση" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Σύνδεση με όνομα χρήστη και κωδικό" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Δημιουργία νέου λογαριασμού" @@ -4580,17 +5297,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Τοποθεσία: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Αρχική σελίδα: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4599,7 +5316,7 @@ msgstr "" "Βιογραφικό: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4614,40 +5331,48 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Από" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ή περισσότεροι χαρακτήρες" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4668,28 +5393,30 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 #, fuzzy msgid "(none)" msgstr "(κανένα)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Δημόσια" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Ομάδες χρηστών" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Πρόσφατες ετικέτες " -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Προτεινόμενα" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Δημοφιλή" @@ -4705,31 +5432,33 @@ msgstr "Βρες ομάδες στο site" msgid "Untitled section" msgstr "Ενότητα χωρίς τίτλο" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" @@ -4742,10 +5471,11 @@ msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4753,6 +5483,1967 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s και οι φίλοι του/της" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Ρυθμίσεις OpenID" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, php-format +msgid "Microblog by %s group" +msgstr "" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Αναζήτηση ροής για \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " +"σας, πριν αλλάξετε τις ρυθμίσεις σας." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Δημόσια ροή %s" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " +"διεύθυνση IM, τηλεφωνικό νούμερο." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Δημιουργία" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +msgid "Edit Avatar" +msgstr "" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " +"να τον συνδέσετε στο OpenID σας." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s και οι φίλοι του/της" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Τοποθεσία" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Μήνυμα" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Μήνυμα" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Διαχειριστής" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Απέτυχε η αποθήκευση του προφίλ." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " +"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Ο κωδικός αποθηκεύτηκε." + +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Γίνε συνδρομητής αυτού του χρήστη" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s και οι φίλοι του/της" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Διαχειριστής" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Αλλάξτε τον κωδικό σας" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Σύνδεση" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Σύνδεση" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Ομάδες χρηστών" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ομάδες με τα περισσότερα μέλη" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Βρες ομάδες στο site" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " +"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " +"δοκιμάστε το [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "από" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Διαγραφή μηνύματος" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Δημιουργία νέου λογαριασμού" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index 4eeac7304f8599e5c1a260a71cd466ac4970bde5..b970c431985f5ab63f50b0b336774dbb77faed9a 100644 GIT binary patch delta 29027 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 delta 21074 zcma*v1$G}^BkVZ!H$y$ zoASrb5XTu)Nx6(z!z~hro!}19j6>-#V~Ay#jzE};slJswKjbS z%Q{ZL`HM*NAjc_2YmrnK`?BN2qmTTLv!6fIVfJQ@QyZ(IItpMm+=Qv|p!FDLC;bCv z#9LSZgI;l*3|I&?p>mjo{+*^oH1n>Q2FIdaoQxWfkC|{Irp0}j84p`8pz7bT>5%58 zUJg`;`B5E~Le*=CYPTJR(Z4f{NHhj)!7|j$wy6Rh!E|^IwbYle2;RWTn7xJLBw{mE z`A(bu0=1H*TRP5g?204sBv!*Ft?08Lk*P#pz)!F~{()JsRBN^c>!J2;Fy_Ts*bmpC z8j5V=I5V&fR>j}&Z7k5%Ed6>cPWl)|<1@^L(d}6Od_*d=bDU6Yg<9ecsG0Oa?QJ4* zKAqvHm3R%a;G3w1eALo@f+cYmHpCmK_baw{oDx_A)z1Lyu=cFK8ho7$bubY*{LU0q z{tVO>%*O~^j+t;1#^8R`;kt^MF+&G)So2#OpawJmRlXRtvKz1%eiwQ`S8GcVfBlvhJ_&;see8H_p`Z=O-Y?k8%s37; zfV!yst{9C8sFj(DIq2V6ZZmdZe$uD03_irdSiHAc(iT{N^Z?Y7&cbM1jXI16tv6Ba zWbI=*s(@P2S5PZ61hr!CU_b>Q6449$Y{74+ng5N2F>^x7x7w+U+M)qi8t0?7=pg3B z8>ktF_ciIFr~%hUwci(Y-KX2~HGNrsRrrbwo&Kw+dmYrzoYw595m!g;eFsd1Lr{n9 zH7tbFQCqap=I=w@ic_fT9MRvjmlbu`t70@J^k@AwvZ-XG#g9=V{0!Cc2~>x-Fg-p% zb(|`Z1Ba2Q8P`UwNM{VgSvLPY)NR;;n!qtkgO^bQz7-&%y$Bv)mMSMUCjA1c!^x<< zo{ORQiOo+!o#wr$r9Xl?R5!2~rX6T*NjcOC*G1*`L2d0EjK;tkB3k-ytQS!;dWc$y zY=g`U%Ap#12~|GC=FdRAztZOKLJjB#)K)&Q<>7p7lwZ(V3t54H(}jqZYzXRuGZwWa z<54615VdsMQ7dp1wRERZTlNQPN$+3=e2jW8Y=~L8f~WyjwYI?*Awv8o&b7 ziyxtue5dsk#*w~>T`~7ivm#?qhwEL`Ko+5H%SRZFhcF1wpay;p)8j=Ubn-=A%&!PPF+mZT?);AzqAXe;aB52QV5>Vn8GO zi-;O{h+2t|;f~V-Gh#dr$F}$(mcYkY9*d1I4Rysaq{pLX`V`e+$VfBrOsK+t$$6O#Pe~ zO@0|Hf-O)hG5R&uKNFFuWaxA*LN%}zHPS;^1|Oil197jLpXX&TBkAs__lDt4oQdijWrGTM$Ke6X2sE{FWxN7jaxAb zo-je7yYen-g|}e1?*A7=bo!5`WN=SW75~7B z7&hL_xDM*NbwSNE0d+{{U|rmaI+Q_dv<99NwFNaX2%Dp}sugPMI$$LIJAH|0iQh!c zbUvz~Rj85fLN#>IdJa|Z25O6*VlE7Q(;UiZ)O)2dWkpa+-xGDXhhPDmhyk7Al{RAw zYAep725=9xs73-nybt}{gC8B0B-ue#e{Y6+DSEJrLg(3Jms-vr@_n)BJ%RJe98Dl52 z{+elhGIW|dqE=uqYDuS|%0IH{?O1~JDbxytyk$BriJECg)Br|d9-M|cd@E5av=KGn z9jHTmFhE2zK7$(Z6-x5C*A5-IWTkhHXHJEaS zQ2m|5Pz+orqLJM}9h#@88Kj$PmO2;aBV7c`VSS9l(Wrs0L@n())Ij&4w&)b9-Cr;o zZ&)LynR=y=dI6^n5p~$i+7;E&VAK+QglTXSYQ#Hj{yx;qkD&%~!KN>v4(UDAgwjtp z1BpcS6N75692U|2uVxE+VSWlmU}5x8U%Fkk{0G#MUqN-~zHK^6gBnP*HQwe|MRn8? zwd9?!5DvtmI2SAE{_iBBnccv(^==3 z!KSOUYbx=lAhwbK!GwuYgu`8?FX76yo9Ch|Tu#Z5R0UC;bIU<`7Qodc+u zH=k=vM0GeB)u5010KJF$wr|6%_#eSD`O1K&; z;6*Hpk?)#Q{35EuVb~65+x)B8fOIC`%(xwDWk;j7@J)=sx3ReH|9eCt(+I^2(1nWLzIUBn!C1G8bOg=R_fpq9EAs(uYry=JJN0STxxG6^-nsi<2p3)ATS zFC?NFe~2&PDtr;|V=k<>$aK&ZRc{1pK%=l2PR4?`5w$WWu`oWh`GwvyTh|CR@Uf^{ z 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�G+@caqf`A6a| zx#ev7Ht{0FuM>VHK7ufWmOjH_gh@0woA5KCf_kve7}DXy%kth#o7aUrJs%jHB+?5g z=i&c31c}cHcL|Sdg@-tUu#CL2xCKwzvZi#lk#sL?LL(~({L1a*HVr!U$?s2E&!>bk zHa{i9{?U#)Z<4>7znnOoN$45NOI2)K=??bASlgKLDiLOqu0(iB`5J=$wy{oyJf+D` zW$RzW={BAThZ9CpCyQ-2GwH8%{@W1w7=vuVEB_b-*-m!St!-XB>5r*5hLA>uJf9K2 zZQor=TVE0{kI$c;#J?x+JzM7i1*ZtNNUMLRACWS6f{J+wEeU<-aF7al`jNguoe<)A zY$KD1Pa%IfVI`q2`8RFZVai7Eel+13@wdq@NXSQMOWk<Ec!l$J5SLWwWP9ndMuV(>a1>phd zKGb`ku!?vw{Ys)bWf?>;VFU3cWW*CcLYbZoq!*iL%0B|UOS%Z=8H1VB;X5?2Qorn0#7)khvyjAvn zvYm$d{x>J%1O=PPNJspA;%Uh*OuQC;L;iB|))9^npFsX~>_*uSCX-WDcg0)L7p(rdE0oa+9aWGdRhVS0&!vHmd9x z>eL~zaVct>0UQ764EYexK{jVIdj zu}mh4{Bwj^l)Z=t3A-qtM*2KvwQGAV$lj;?Wc)#4Wqb=`2*+%LGp%jNTTFZ&Rw3wl zk#r$jKHOwE4M=Ao76-9_YgAbrr5cPBoY{HmlAsgss;vn~8Ff{X@O zkivgHVWb<9F`x1!#8(lYPQ1@QDm^7W#HMRd=EYte;SK6g(kpXqXHvxV#=%}<*KOX* z-9~v~-RF7_y5CHS>X|Oc`{u7fNgM9palMFHnUWg!>+X87iJ85@iQjoU9~bsU59sAJ zdXm>$|D;Mp@8P|MI<@+Bdo8-&(4m8dCfyns7o6O~b%(kBxgfW)_jFi6uh#IK{+n6d zT>kE0H`!}AqHkzIw}E|nB|RK5GbChqw;sd2r=!YxO-48HYlpdc{V&tInf)1I?liwj zxZBO&6Yhq2)5ktbN_yk2>pzWfU-yQL@0)aSd^^`)lG)ASpU>>Zdr=c({6ksX7yXi1 z-B2%hQk*wvQlfWlQqiOelaIK5(;RLF@5d>ry;4(ddex?W;k_{}+@Bfgrt{B7y2ZTI z)9-t|-|p%k&+X>)Z|8O!dI>X5_!Bz1d6NddbJX>BM7h(vdb9ubTjh6iCiS1QGdQ_Q zAvZk8OPasHYqOx2cW%KHe}00S(ccj3*76=Ld?BgnqAJ1u<`QmJ|3V2jk9T58CO;);06D^((YvM!3X91 zL1o+xe$%pUjF+%{vL9Q{&F2mND1#qb-Yw@XU6I-!Ro;Eq&t1Wd@@}upmprn9yCf)S z*_vvuzqE>b*8ifa+tZJ)=FafitdH|%ua6HM(LJ$m4}VZ~H@CmIx;w_(vf+S#yM|jP z>Dk60*MF^+Tg4lf)W9!U+g+dhW*xV?>xb2IrT;3m!7al!SEH+4TtsDe! z_m`Qx#C^H_K`q=#{;Zbn;pD}w+(yC4_1RF@8*n(x`{~d~e_{u>O46r?IY$Yd+@_m5 zyUT+7^Ie&H=i?>)-rd~m-kcNTy&@+Qy|X9NdOJ^+N$Pnj(oHVg%dO)2LwmdB{6oFn zmy^CflhySi&wk;*(bp~Sf8N)f>96YN#`{nDx$~1coR10iYYcK{B>5LJ1|@y_Ya`cd z`ulwE*6;hgQkTzpH;09Lo&JdNkB)T9dY}K%F+-`+CCZeKE?uEYnR0QZN+lJ)vd9hT zJ#^3juk^KD&#zMlFXUENZ_2ILz0$XR?_T$H-qAbty{MkmlcwDL*0onFA^0CRYW07) zNm<>bs?Tx+{kQ9s%yr7{rmB;2nUZsby0iavn{xTh)4Aon-lOyQyVJRu{?olm=3b?9 zy-(k$k{p-8J?{G1GP>P$v%HJrm-*W>xkvx~VwLs=Od6<5mE10y`+<0ouj=yR{@}74z5lP9lw7K^+t~HjR&l@mpI0fFt5nF59e diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index a105d2b867..67c09140e5 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-05-21 01:42+0000\n" "Last-Translator: Bruce Cowan \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Search Stream for \"%s\"" @@ -26,7 +26,7 @@ msgstr " Search Stream for \"%s\"" # Adjusted for grammar. #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -39,17 +39,19 @@ msgid " from " msgstr "from" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Updates replying to %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s has invited you to join them on %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -101,11 +103,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s is now listening to your notices on %2$s." @@ -128,25 +132,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates that reply to updates from %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Public Stream" @@ -156,34 +163,48 @@ msgstr "%s Public Stream" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s and friends" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s timeline" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates from everyone!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,16 +212,18 @@ msgstr "" "(You should receive a message by e-mail momentarily, with instructions on " "how to confirm your e-mail address.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** is a microblogging service brought to you by " -"[%%site.broughtby%%](%%site.broughtbyurl%%)." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." @@ -212,39 +235,44 @@ msgstr ". Contributors should be attributed by full name or nickname." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 or more characters" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 or more characters, and don't forget it!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 or more characters. Required." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"A confirmation code was sent to the IM address you added. You must approve " -"%s for sending messages to you." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -278,7 +306,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API method not found!" @@ -301,16 +356,23 @@ msgstr "API method not found!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API method under construction." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "About" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accept" @@ -321,6 +383,9 @@ msgstr "Accept" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Add" @@ -338,27 +403,29 @@ msgstr "Add or remove OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Address" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Addresses of friends to invite (one per line)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "All subscriptions" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "All updates for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "All updates matching search term \"%s\"" @@ -368,30 +435,37 @@ msgstr "All updates matching search term \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Already logged in." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Already subscribed!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Are you sure you want to delete this notice?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Authorise subscription" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatically login in the future; not for shared computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -400,18 +474,21 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar updated." # Buddy? #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#, php-format -#, fuzzy +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" @@ -420,6 +497,7 @@ msgstr "" "message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -428,7 +506,7 @@ msgstr "" "a message with further instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Awaiting confirmation on this phone number." @@ -440,6 +518,8 @@ msgstr "Before »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" @@ -447,16 +527,18 @@ msgstr "Bio" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Bio is too long (max 140 chars)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Can't delete this notice." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Can't read avatar URL '%s'" @@ -464,6 +546,8 @@ msgstr "Can't read avatar URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Can't save new password." @@ -471,31 +555,34 @@ msgstr "Can't save new password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancel" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Cannot create OpenID consumer object." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Cannot normalise Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Change" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Change e-mail handling" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Change password" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Change your password" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Change your profile settings" @@ -519,6 +607,9 @@ msgstr "Change your profile settings" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirm" @@ -531,12 +622,14 @@ msgstr "Confirm Address" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmation cancelled." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Confirmation code" @@ -545,7 +638,8 @@ msgstr "Confirmation code" msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -579,21 +673,25 @@ msgstr "" "Thanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connect" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connect existing account" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" # Thought form was incorrect #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Could not create OpenID from: %s" @@ -601,35 +699,39 @@ msgstr "Could not create OpenID from: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Could not follow user: %s is already on your list." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Could not follow user: User not found." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Could not redirect to server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Could not save avatar info" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Could not save new profile info" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Could not subscribe other to you." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Could not subscribe." @@ -649,15 +751,17 @@ msgstr "Couldn't convert request tokens to access tokens." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Couldn't find any statuses." @@ -670,29 +774,38 @@ msgstr "Couldn't get a request token." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Couldn't insert confirmation code." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Couldn't save profile." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Couldn't update user record." @@ -708,42 +821,48 @@ msgstr "Couldn't update user record." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Couldn't update user." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Create" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Create a new user with this nickname." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Create new account" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creating new account for OpenID that already has a user." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Current confirmed Jabber/GTalk address." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Current confirmed SMS-enabled phone number." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Current confirmed e-mail address." @@ -752,23 +871,27 @@ msgid "Currently" msgstr "Currently" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "DB error inserting reply: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Delete notice" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Describe yourself and your interests in 140 chars" @@ -776,11 +899,13 @@ msgstr "Describe yourself and your interests in 140 chars" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-mail Address" @@ -790,39 +915,43 @@ msgid "Email Settings" msgstr "E-mail Settings" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "E-mail address already exists." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "E-mail address confirmation" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mail address, like \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "E-mail addresses" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Enter a nickname or e-mail address." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Enter the code you received on your phone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error authorising token." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error connecting user to OpenID." @@ -833,39 +962,46 @@ msgstr "Error connecting user." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error inserting avatar." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error inserting new profile." #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error inserting remote profile." #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error saving address confirmation." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error saving remote profile." #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error saving the profile." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error saving the user." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error saving user; invalid." @@ -874,6 +1010,9 @@ msgstr "Error saving user; invalid." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error setting user." @@ -886,6 +1025,7 @@ msgstr "Error updating profile." # Added full stop #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error updating remote profile." @@ -895,33 +1035,36 @@ msgid "Error with confirmation code." msgstr "Error with confirmation code." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Existing nickname" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "F.A.Q." #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Failed updating avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed for friends of %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed for replies to %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed for tag %s" @@ -936,7 +1079,7 @@ msgstr "Find content of notices" msgid "Find people on this site" msgstr "Find people on this site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -949,6 +1092,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Full name" @@ -957,23 +1105,33 @@ msgstr "Full name" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Help" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -981,22 +1139,28 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "I want to post notices by e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "I.M." # possibly use I.M. #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "I.M. Address" @@ -1007,7 +1171,7 @@ msgid "IM Settings" msgstr "I.M. Settings" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1015,7 +1179,7 @@ msgstr "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1024,7 +1188,7 @@ msgstr "" "click \"Add\"." # double space here -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1035,25 +1199,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Incoming e-mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Incoming e-mail address removed." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Incorrect old password" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Incorrect username or password." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1063,30 +1233,31 @@ msgstr "" # Avatar? #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Invalid avatar URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Invalid e-mail address: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Invalid homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Invalid licence URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Invalid notice content" @@ -1102,13 +1273,13 @@ msgid "Invalid notice url" msgstr "Invalid notice URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Invalid profile URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Invalid profile URL (bad format)" @@ -1126,28 +1297,35 @@ msgstr "Invalid size." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Invalid username or password." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitation(s) sent" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitation(s) sent to the following people:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invite" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invite new users" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1159,11 +1337,12 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID already belongs to another user." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1173,12 +1352,14 @@ msgstr "" "add %s to your buddy list in your IM client or on GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Language" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Language is too long (max 50 chars)." @@ -1187,7 +1368,15 @@ msgstr "Language is too long (max 50 chars)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Location" @@ -1196,7 +1385,12 @@ msgstr "Location" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Location is too long (max 255 chars)." @@ -1205,44 +1399,52 @@ msgstr "Location is too long (max 255 chars)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Login" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Login with an [OpenID](%%doc.openid%%) account." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"Login with your username and password. Don't have a username yet? " -"[Register](%%action.register%%) a new account, or try " -"[OpenID](%%action.openidlogin%%). " +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logout" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Longer name, preferably your \"real\" name" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Lost or forgotten password?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Make a new e-mail address for posting to - cancels the old one." @@ -1253,65 +1455,74 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Manage how you get e-mail from %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Member since" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog by %s" # Carrier? -#: ../actions/smssettings.php:304 -#, php-format -#, fuzzy +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, fuzzy, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"e-mail but isn't listed here, send e-mail to let us know at %s." +"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" +"mail but isn't listed here, send e-mail to let us know at %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "My text and files are available under " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "New" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "New e-mail address for posting to %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "New incoming e-mail address added." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "New nickname" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "New notice" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "New password" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "New password successfully saved. You are now logged in." @@ -1321,7 +1532,13 @@ msgstr "New password successfully saved. You are now logged in." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nickname" @@ -1330,7 +1547,12 @@ msgstr "Nickname" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." @@ -1339,49 +1561,60 @@ msgstr "Nickname already in use. Try another one." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Nickname must have only lowercase letters and numbers, and no spaces." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Nickname not allowed." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Nickname of the user you want to follow" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nickname or e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "No Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "No authorisation request!" # Carrier? #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 #, fuzzy msgid "No carrier selected." msgstr "No carrier selected." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No code entered" @@ -1393,11 +1626,15 @@ msgstr "No confirmation code." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "No content!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "No e-mail address." @@ -1406,7 +1643,9 @@ msgid "No id." msgstr "No id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No incoming e-mail address." @@ -1417,6 +1656,7 @@ msgstr "No nickname provided by remote server." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "No nickname." @@ -1424,12 +1664,14 @@ msgstr "No nickname." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "No pending confirmation to cancel." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "No phone number." @@ -1439,7 +1681,8 @@ msgid "No profile URL returned by server." msgstr "No profile URL returned by server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "No registered e-mail address for that user." @@ -1451,7 +1694,7 @@ msgstr "No request found!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "No results" @@ -1462,12 +1705,16 @@ msgstr "No size." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No status found with that ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No status with that ID found." @@ -1477,13 +1724,15 @@ msgid "No such OpenID." msgstr "No such OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No such document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No such notice." @@ -1521,12 +1770,22 @@ msgstr "No such subscription" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No such user." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No user with that e-mail address or username." @@ -1540,33 +1799,39 @@ msgid "Not a recovery code." msgstr "Not a recovery code." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Not a registered user." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Not a supported data format." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Not a valid Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Not a valid OpenID." # Missing full stop, needs to merge with: actions/register.php:63 actions/register.php:70 actions/register.php:152 #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Not a valid e-mail address." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -1574,6 +1839,11 @@ msgstr "Not a valid e-mail address." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Not a valid nickname." @@ -1593,7 +1863,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Not a valid profile URL (no YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Not an image or corrupt file." @@ -1604,11 +1875,13 @@ msgstr "Not authorised." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Not expecting this response!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Not found" @@ -1624,12 +1897,16 @@ msgstr "Not found" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Not logged in." # removed full stop -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Not subscribed!" @@ -1646,39 +1923,44 @@ msgid "Notice feed for %s" msgstr "Notice feed for %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notice has no profile" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Notices" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Notices tagged with %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Old password" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Account Setup" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID Auto-Submit" @@ -1686,29 +1968,34 @@ msgstr "OpenID Auto-Submit" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Login" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID authentication cancelled." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID authentication failed: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID failure: %s" @@ -1724,11 +2011,12 @@ msgid "OpenID settings" msgstr "OpenID settings" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Optionally add a personal message to the invitation." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Partial upload." @@ -1738,34 +2026,46 @@ msgstr "Partial upload." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Password" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Password and confirmation do not match." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Password must be 6 chars or more." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Password recovery requested" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Password saved." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passwords don't match." @@ -1785,14 +2085,17 @@ msgid "People search" msgstr "People Search" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personal message" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Phone number, no punctuation or spaces, with area code" @@ -1807,7 +2110,7 @@ msgstr "" "click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." @@ -1816,7 +2119,9 @@ msgstr "Post a notice when my Jabber/GTalk status changes." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferences" @@ -1825,42 +2130,52 @@ msgstr "Preferences" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferences saved." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferred language" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem saving notice." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profile" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profile URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profile settings" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profile unknown" @@ -1869,17 +2184,19 @@ msgid "Public Stream Feed" msgstr "Public Stream Feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Public timeline" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publish a MicroID for my Jabber/GTalk address." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publish a MicroID for my e-mail address." @@ -1889,12 +2206,14 @@ msgid "Recent Tags" msgstr "Recent Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recover" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recover password" @@ -1907,37 +2226,45 @@ msgstr "Recovery code for unknown user." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Register" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registration not allowed." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registration successful" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Reject" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Remember me" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Remote profile with no matching profile" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Remote subscribe" @@ -1951,6 +2278,9 @@ msgstr "Remote subscribe" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Remove" @@ -1959,7 +2289,7 @@ msgstr "Remove" msgid "Remove OpenID" msgstr "Remove OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1968,34 +2298,41 @@ msgstr "" "remove it, add another OpenID first." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Replies" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Replies to %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reset" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Reset password" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Phone number" @@ -2004,17 +2341,18 @@ msgstr "SMS Phone number" msgid "SMS Settings" msgstr "SMS Settings" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS confirmation" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Same as password above" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Same as password above. Required." @@ -2027,12 +2365,21 @@ msgstr "Same as password above. Required." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Save" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Search" @@ -2042,7 +2389,7 @@ msgid "Search Stream Feed" msgstr "Search Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2051,7 +2398,7 @@ msgstr "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2062,35 +2409,40 @@ msgstr "" # Carrier? #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 #, fuzzy msgid "Select a carrier" msgstr "Select a carrier" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Send e-mail to this address to post new notices." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Send me notices of new subscriptions through e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." # Carrier #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 #, fuzzy msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " @@ -2100,15 +2452,19 @@ msgstr "" "from my carrier." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Send me replies through Jabber/GTalk from people I'm not subscribed to." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Settings" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Settings saved." @@ -2128,27 +2484,32 @@ msgid "Something weird happened." msgstr "Something weird happened." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, that is not your incoming e-mail address." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Source" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistics" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Stored OpenID not found." @@ -2156,24 +2517,28 @@ msgstr "Stored OpenID not found." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscribe" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscribers" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscription authorised" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscription rejected" @@ -2181,28 +2546,35 @@ msgstr "Subscription rejected" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptions" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "System error uploading file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Text search" @@ -2222,6 +2594,7 @@ msgid "That confirmation code is not for you!" msgstr "That confirmation code is not for you!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "That e-mail address already belongs to another user." @@ -2231,63 +2604,73 @@ msgid "That file is too big." msgstr "That file is too big." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "That is already your Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "That is already your e-mail address." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "That is already your phone number." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "That is not your e-mail address." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "That is not your phone number." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "That is the wrong IM address." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "That is the wrong confirmation number." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "That phone number already belongs to another user." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "That's too long. Max notice size is 140 chars." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "That's too long. Max notice size is 255 chars." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "The address \"%s\" has been confirmed for your account." @@ -2296,11 +2679,14 @@ msgstr "The address \"%s\" has been confirmed for your account." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "The address was removed." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2310,7 +2696,8 @@ msgstr "" "with the site's instructions for details on how to authorise the " "subscription. Your subscription token is:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2321,35 +2708,39 @@ msgstr "" "subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "These are the people who listen to %s's notices." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "These are the people who listen to your notices." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "These are the people whose notices %s listens to." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "These are the people whose notices you listen to." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -"These people are already users and you were automatically subscribed to " -"them:" +"These people are already users and you were automatically subscribed to them:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "This confirmation code is too old. Please start again." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2358,7 +2749,7 @@ msgstr "" "button to go to your OpenID provider." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2373,6 +2764,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "This method requires a POST or DELETE." @@ -2381,50 +2775,64 @@ msgstr "This method requires a POST or DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "This method requires a POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "This page is not available in a media type you accept" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Timezone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Timezone not selected." # double space. -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"To subscribe, you can [login](%%action.login%%), or " -"[register](%%action.register%%) a new account. If you already have an " -"account on a [compatible microblogging site](%%doc.openmublog%%), enter " -"your profile URL below." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Two user ids or screen_names must be supplied." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL of your homepage, blog, or profile on another site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" @@ -2436,15 +2844,22 @@ msgstr "URL of your profile on another compatible microblogging service" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Unexpected form submission." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Unexpected password reset." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Unknown action" @@ -2475,38 +2890,47 @@ msgstr "Unsubscribe" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Unsupported OMB version" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Unsupported image file format." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Updates by SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (I.M.)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Upload" @@ -2527,13 +2951,16 @@ msgid "Upload a new profile image" msgstr "Upload a new profile image" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" "Use this form to invite your friends and colleagues to use this service." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Used only for updates, announcements, and password recovery" @@ -2557,11 +2984,16 @@ msgstr "User being listened to doesn't exist." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "User has no profile." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "User nickname" @@ -2570,29 +3002,33 @@ msgid "User not found." msgstr "User not found." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In which timezone are you?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "What's up, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Where you are, like \"City, State (or Region), Country\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Wrong image type for '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Wrong size image at '%s'" @@ -2600,7 +3036,9 @@ msgstr "Wrong size image at '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Yes" @@ -2623,11 +3061,12 @@ msgid "You are already logged in!" msgstr "You are already logged in!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "You are already subscribed to these users:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "You are not friends with the specified user." @@ -2645,7 +3084,7 @@ msgstr "You can create a new account to start posting notices." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "You can receive SMS messages through e-mail from %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2654,40 +3093,43 @@ msgstr "" "\"Remove\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"You can send and receive notices through Jabber/GTalk [instant " -"messages](%%doc.im%%). Configure your address and settings below." +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -"You can update your personal profile info here so people know more about " -"you." +"You can update your personal profile info here so people know more about you." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "You can use the local subscription!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "You can't register if you don't agree to the licence." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "You did not send us that profile" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2709,16 +3151,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "You may not delete another user's status." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "You must be logged in to invite other users to use %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2727,21 +3172,22 @@ msgstr "" "on the site. Thanks for growing the community!" # extra spaces. -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "You've been identified. Enter a new password below. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Your OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Your nickname on this server, or your registered e-mail address." # extra spaces. -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2750,47 +3196,57 @@ msgstr "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "a few seconds ago" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "about a day ago" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "about a minute ago" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "about a month ago" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "about a year ago" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "about an hour ago" @@ -2812,12 +3268,14 @@ msgid "reply" msgstr "reply" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "same as password above" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "unsupported file type" @@ -2839,6 +3297,26 @@ msgstr "← After" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -2847,6 +3325,7 @@ msgid "This notice is not a favorite!" msgstr "This notice is not a favourite!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Could not delete favourite." @@ -2854,22 +3333,28 @@ msgstr "Could not delete favourite." msgid "Favor" msgstr "Favour" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send me e-mail when someone adds my notice as a favourite." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Send me e-mail when someone sends me a private message." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "This notice is already a favourite!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Could not create favourite." @@ -2879,11 +3364,13 @@ msgstr "Disfavour" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s's favorite notices" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed of favourite notices of %s" @@ -2926,34 +3413,45 @@ msgid "Login with your username and password. " msgstr "Login with your username and password. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "That's too long. Max message size is 140 chars." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No recipient specified." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "You can't send a message to this user." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" "Don't send a message to yourself; just say it to yourself quietly instead." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "No such user" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "New message" @@ -3008,6 +3506,11 @@ msgstr "You can update your personal profile info here " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "User without matching profile" @@ -3036,6 +3539,8 @@ msgid "New password successfully saved. " msgstr "New password successfully saved. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Password must be 6 or more characters." @@ -3058,12 +3563,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "To subscribe, you can [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed for favourites of %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Could not retrieve favourite notices." @@ -3071,7 +3579,7 @@ msgstr "Could not retrieve favourite notices." msgid "No such message." msgstr "No such message." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Only the sender and recipient may read this message." @@ -3091,57 +3599,75 @@ msgstr "Send a message" # Carrier? #: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Mobile carrier for your phone. " msgstr "Mobile carrier for your phone. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direct messages to %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "All the direct messages sent to %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Direct Messages You've Sent" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "All the direct messages sent from %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "No message text!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Recipient user not found." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favourites from %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s updates favourited by %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s added your notice as a favourite" @@ -3163,14 +3689,17 @@ msgstr "" "Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter settings" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter Account" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Current verified Twitter account." @@ -3179,6 +3708,7 @@ msgid "Twitter Username" msgstr "Twitter Username" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "No spaces, please." @@ -3187,18 +3717,22 @@ msgid "Twitter Password" msgstr "Twitter Password" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Automatically send my notices to Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Send local \"@\" replies to Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Subscribe to my Twitter friends here." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3207,6 +3741,7 @@ msgstr "" "underscore (_). 15 chars max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Could not verify your Twitter credentials!" @@ -3217,33 +3752,43 @@ msgstr "Unable to retrieve account information for \"%s\" from Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Unable to save your Twitter settings!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter settings saved." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "That is not your Twitter account." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Couldn't remove Twitter user." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter account removed." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Couldn't save Twitter preferences." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter preferences saved." @@ -3260,18 +3805,19 @@ msgid "The subscription has been rejected, but no " msgstr "The subscription has been rejected, but no " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Command results" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Command complete" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Command failed" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Sorry, this command is not yet implemented." @@ -3281,89 +3827,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Subscriptions: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "User has no last notice" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Notice marked as fave." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullname: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Location: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "About: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direct message to %s sent" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error sending direct message." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Specify the name of the user to subscribe to" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Subscribed to %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Specify the name of the user to unsubscribe from" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Unsubscribed from %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Command not yet implemented." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notification off." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Can't turn off notification." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notification on." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Can't turn on notification." @@ -3371,11 +3939,11 @@ msgstr "Can't turn on notification." msgid "Commands:\n" msgstr "Commands:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Could not insert message." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Could not update message with new URI." @@ -3392,7 +3960,7 @@ msgstr "" "You have a new posting address on %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "New private message from %s" @@ -3406,7 +3974,7 @@ msgstr "" "%1$s (%2$s) sent you a private message:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Only the user can read their own mailboxes." @@ -3415,31 +3983,39 @@ msgid "This form should automatically submit itself. " msgstr "This form should automatically submit itself. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favourites" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's favourite notices" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "User" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Inbox" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Your incoming messages" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Outbox" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Your sent messages" @@ -3452,14 +4028,19 @@ msgid "Twitter integration options" msgstr "Twitter integration options" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "To" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Could not parse message." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s and friends, page %d" @@ -3470,21 +4051,31 @@ msgstr "You can upload your personal avatar." # requires full stops? #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar settings" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Crop" @@ -3501,34 +4092,43 @@ msgid "There was a problem with your session token. " msgstr "There was a problem with your session token. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Pick a square area of the image to be your avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Lost our file data." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Lost our file." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Unknown file type" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No profile specified." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No profile with that ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Block user" @@ -3536,11 +4136,11 @@ msgstr "Block user" msgid "Are you sure you want to block this user? " msgstr "Are you sure you want to block this user? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "You have already blocked this user." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Failed to save block information." @@ -3557,38 +4157,56 @@ msgstr "You are about to permanently delete a notice. " msgid "Add to favorites" msgstr "Add to favourites" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Edit %s group" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Inboxes must be enabled for groups to work" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "You must be logged in to create a group." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "No nickname" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "No such group" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "You must be an admin to edit the group" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Use this form to edit the group." @@ -3597,14 +4215,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Nickname must have only lowercase letters " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "description is too long (max 140 chars)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Options saved." @@ -3621,7 +4240,8 @@ msgstr "Make a new e-mail address for posting to; " msgid "Send me email when someone " msgstr "Send me e-mail when someone " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Allow friends to nudge me and send me an e-mail." @@ -3633,7 +4253,7 @@ msgstr "That e-mail address already belongs " msgid "A confirmation code was sent to the email address you added. " msgstr "A confirmation code was sent to the e-mail address you added. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Server error - couldn't get user!" @@ -3647,53 +4267,68 @@ msgstr "If you would like the %s app to automatically update " msgid "Allow %s to update my Facebook status" msgstr "Allow %s to update my Facebook status" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Skip" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "No notice content!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Pagination" # erm, not sure what to do here, « is recognised as a quotation mark. #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "After" # erm, not sure what to do here, » is recognised as a quotation mark. #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Before" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Thanks for inviting your friends to use %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitations have been sent to the following users:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "You have been invited to %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invite your friends to use %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Friends already using %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Send invitations" @@ -3735,12 +4370,14 @@ msgstr "If you would like %s to automatically update " msgid "Sync preferences" msgstr "Sync preferences" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Disfavor favourite" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Popular notices" @@ -3754,7 +4391,8 @@ msgid "The most popular notices on the site right now." msgstr "The most popular notices on the site right now." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Featured users" @@ -3768,15 +4406,17 @@ msgstr "Featured users, page %d" msgid "A selection of some of the great users on %s" msgstr "A selection of some of the great users on %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "That user has blocked you from subscribing." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "No ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Group logo" @@ -3784,11 +4424,13 @@ msgstr "Group logo" msgid "You can upload a logo image for your group." msgstr "You can upload a logo image for your group." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo updated." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Failed updating logo." @@ -3807,7 +4449,8 @@ msgid "A list of the users in this group." msgstr "A list of the users in this group." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groups" @@ -3822,6 +4465,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% groups let you find and talk with " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Create a new group" @@ -3832,7 +4476,7 @@ msgid "" msgstr "" "Search for groups on %%site.name%% by their name, location, or description. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Group search" @@ -3854,20 +4498,20 @@ msgstr "Send me replies through Jabber/GTalk " msgid "A confirmation code was sent " msgstr "A confirmation code was sent " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "You must be logged in to join a group." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "You are already a member of that group" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Could not join user %s to group %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s joined group %s" @@ -3876,15 +4520,18 @@ msgstr "%s joined group %s" msgid "Inboxes must be enabled for groups to work." msgstr "Inboxes must be enabled for groups to work." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "You must be logged in to leave a group." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "No such group." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "You are not a member of that group." @@ -3892,22 +4539,26 @@ msgstr "You are not a member of that group." msgid "You may not leave a group while you are its administrator." msgstr "You may not leave a group while you are its administrator." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Could not find membership record." # Thought form was incorrect -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Could not remove user %s to group %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s left group %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Login to site" @@ -3919,15 +4570,17 @@ msgstr "No current status" msgid "New group" msgstr "New group" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Use this form to create a new group." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Could not create group." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Could not set group membership." @@ -3939,11 +4592,14 @@ msgstr "That's too long. " msgid "Don't send a message to yourself; " msgstr "Don't send a message to yourself; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Notice posted" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Error" @@ -3961,7 +4617,7 @@ msgstr "Nudge sent" msgid "Nudge sent!" msgstr "Nudge sent!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID login" @@ -3986,11 +4642,13 @@ msgstr "URL Auto-shortening" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Automatic shortening service to use." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL shortening service is too long (max 50 chars)." @@ -3998,16 +4656,17 @@ msgstr "URL shortening service is too long (max 50 chars)." msgid "Change your password." msgstr "Change your password." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Password change" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Not a valid people tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Users self-tagged with %s - page %d" @@ -4017,36 +4676,41 @@ msgstr "Users self-tagged with %s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "These are users who have tagged themselves \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profile information" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " msgstr "Automatically subscribe to whoever " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Invalid tag: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Couldn't save tags." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Public timeline, page %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Could not retrieve public stream." @@ -4056,8 +4720,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki" -"/Micro-blogging) service " +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4068,11 +4732,13 @@ msgstr "Public tag cloud" msgid "These are most popular recent tags on %s " msgstr "These are most popular recent tags on %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag cloud" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Sorry, only invited people can register." @@ -4121,7 +4787,8 @@ msgstr "(You should receive a message by e-mail " msgid "That's a local profile! Login to subscribe." msgstr "That's a local profile! Login to subscribe." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Replies to %s, page %d" @@ -4131,50 +4798,71 @@ msgstr "Replies to %s, page %d" msgid "%s favorite notices, page %d" msgstr "%s favourite notices, page %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s group" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s group, page %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Group profile" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Note" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Notice feed for %s group" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Members" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "All members" @@ -4184,14 +4872,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Only the sender and recipient " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, page %d" @@ -4201,30 +4889,37 @@ msgid "'s profile" msgstr "'s profile" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "User profile" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Photo" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "User actions" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Send a direct message to this user" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Message" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "All subscribers" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "All groups" @@ -4234,8 +4929,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4250,7 +4945,7 @@ msgid "A confirmation code was sent to the phone number you added. " msgstr "A confirmation code was sent to the phone number you added. " # Carrier? -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Mobile carrier" @@ -4309,16 +5004,17 @@ msgstr "These are the people whose notices " msgid "These are the people whose " msgstr "These are the people whose " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notices tagged with %s, page %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messages tagged \"%s\", most recent first" @@ -4340,7 +5036,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Tag user" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4352,17 +5048,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "There was a problem with your session token." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "You can only tag people you are subscribed to or who are subscribed to you." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Could not save tags." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Use this form to add tags to your subscribers or subscriptions." @@ -4370,20 +5066,23 @@ msgstr "Use this form to add tags to your subscribers or subscriptions." msgid "No such tag." msgstr "No such tag." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog tagged with %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Block user failed." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Unblock user failed." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Not found." @@ -4391,15 +5090,16 @@ msgstr "Not found." msgid "Add your Twitter account to automatically send " msgstr "Add your Twitter account to automatically send " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter user name" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter password" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter Friends" @@ -4412,144 +5112,153 @@ msgstr "Username must have only numbers, " msgid "Unable to retrieve account information " msgstr "Unable to retrieve account information " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Error removing the block." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No profile id in request." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "No profile with that id." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s groups" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s groups, page %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Too many notices too fast; take a breather and post again in a few minutes." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Upload an avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Other" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Other options" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Primary site navigation" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Account" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connect to IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Create an account" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Login with OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Local views" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "All " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licence." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Block this user" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Block" @@ -4562,11 +5271,14 @@ msgstr "Disfavour this notice" msgid "To use the %s Facebook Application you need to login " msgstr "To use the %s Facebook Application you need to login " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " a new account." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Published" @@ -4586,53 +5298,59 @@ msgstr "Filter tags" msgid "All" msgstr "All" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Choose a tag to narrow list" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Go" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL of the homepage or blog of the group or topic" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Describe the group or topic in 140 chars" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Group" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Edit %s group properties" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Add or edit %s logo" @@ -4662,11 +5380,11 @@ msgstr "Join" msgid "Leave" msgstr "Leave" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Login with a username and password" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Sign up for a new account" @@ -4688,17 +5406,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s is now listening to " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Location: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4707,7 +5425,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "You've been nudged by %s" @@ -4722,39 +5440,47 @@ msgstr "%1$s (%2$s) is wondering what you are up to " msgid "%1$s just added your notice from %2$s" msgstr "%1$s just added your notice from %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "From" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send a direct notice" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Send a notice" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Available characters" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "in reply to" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Delete this notice" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Delete" @@ -4775,27 +5501,29 @@ msgstr "Send a nudge to this user" msgid "Tags in %s's notices" msgstr "Tags in %s's notices" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(none)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "User groups" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Recent tags" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Featured" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4811,31 +5539,33 @@ msgstr "Find groups on this site" msgid "Untitled section" msgstr "Untitled section" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "People %s subscribes to" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "People subscribed to %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Groups %s is a member of" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "User has blocked you." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscribe to this user" @@ -4848,10 +5578,11 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Unblock this user" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Unblock" @@ -4859,6 +5590,2068 @@ msgstr "Unblock" msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for friends of %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for friends of %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for friends of %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s and friends" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "You can upload your personal avatar." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar updated." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "There was a problem with your session token. Try again, please." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send me e-mail when someone sends me a private message." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "You can upload a logo image for your group." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Pick a square area of the image to be your avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog by %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error sending direct message." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Search Stream for \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Public Stream Feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Public Stream Feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Public Stream Feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +# Adjusted for grammar. +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" except this private data: password, e-mail address, IM address, phone " +"number." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Create" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Group profile" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'s profile" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox for %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profile settings" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "No such user" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Add your Twitter account to automatically send your notices to Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Unable to retrieve account information for \"%s\" from Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Search for people or text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connect to IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Nudge" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "To use the %s Facebook Application you need to login " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Search" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No such document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "A list of the users in this group." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "A list of the users in this group." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "User profile" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s and friends, page %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "A list of the users in this group." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Unblock user failed." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Confirmation code" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Can't delete this notice." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Invalid tag: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nickname already in use. Try another one." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Could not create favourite." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "New notice" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "New notice" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Not a valid nickname." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No profile specified." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "User has blocked you." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "You are not a member of that group." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Block user" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "You must be logged in to create a group." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groups" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Couldn't update user." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Unable to save your Twitter settings!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Sync preferences saved." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "You must be an admin to edit the group" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "No results" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "User has blocked you." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Message" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Couldn't save profile." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +# extra spaces. +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profile settings" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +# double space here +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"e-mail address you have stored in your account." + +# extra spaces. +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "You've been identified. Enter a new password below. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Password recovery requested" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error with confirmation code." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscribe to this user" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favourite notices, page %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Not a local user." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notices tagged with %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notice feed for %s group" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s is now listening to " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notice feed for %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notice feed for %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "This notice is already a favourite!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "This notice is not a favourite!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Could not retrieve public stream." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No recipient specified." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Couldn't find any statuses." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates replying to %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licence." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscriptions" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profile settings" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "You are not a member of that group." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem saving notice." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message to %1$s on %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "User profile" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profile" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Upload" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Change your password" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connect" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Search" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Login" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Block" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Block user" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Add or edit %s logo" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "No content!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "User" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Search" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Homepage is not a valid URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No such tag." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direct messages to %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "That's too long. Max message size is 140 chars." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Could not follow user: User not found." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "You are already a member of that group" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Could not join user %s to group %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "You are not a member of that group." + +# Thought form was incorrect +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Could not remove user %s to group %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s groups" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groups %s is a member of" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Group actions" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "That's too long. Max notice size is 140 chars." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Unsupported image file format." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "User being listened to doesn't exist." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Not authorised." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Couldn't convert request tokens to access tokens." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unknown version of OMB protocol." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No such notice." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Lost our file." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "This page is not available in a " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "All updates matching search term \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Describe yourself and your interests in 140 chars" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Describe yourself and your " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio is too long (max 140 chars)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "That's a local profile! Login to subscribe." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Couldn't get a request token." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notice feed for %s group" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message to %1$s on %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s group" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notice posted" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "This page is not available in a " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notice feed for %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"The subscription has been authorised, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorise the " +"subscription. Your subscription token is:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Can't read avatar URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Wrong image type for '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Could not redirect to server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet software licence" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Couldn't update user with confirmed e-mail address." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Nudge sent" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Reply to this notice" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem saving notice." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "No confirmation code." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Login to the site" + +# Carrier? +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Select a carrier" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Describe the group or topic in 140 chars" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describe the group or topic in 140 chars" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Notice feed for %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s added your notice as a favourite" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "from" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Could not delete favourite." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Delete notice" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Create new account" diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index 05eabcc750d7182a58a50a4f0c4127bd1ce35df9..dffc701b44cf49a079d36087962d801c2d2ef5a9 100644 GIT binary patch delta 29229 zcma*v2YeLO!vFuB6hiO4ZUO;93B5+?y*EL+Az4Bojcfu^WC2mBQU+X56i`GIMP$VY z(nLWl*abyJQ3MeLdqd^-`R+OKa-Zkk=l`GA>*Rgf%$zxGW_f(>s^!tUHx>z;DIc}Y z!_g_qFzQTYiMx`?DSQeG8g&M;I)R?x$ z2AG5$FaE zss~1+CShPMk$562t$VN;>5owrO5~WKsEv(Cw?cK@1gwn9P#1m}HI%QQhTsw=V8iJq ze;D>9JppA4+a{XNTxl*3&Zi$_o=oWs(12`k|rSO&|^Fhk(Qilhgk z$|s?2d^_sK>#!_7gSyTUTmBB}I#)2DC;gj4_nz2Bc#ZybCMfgQ$AXSohAR|4WkbA{ou`P4wb*R2O^am@e*!y3j2) zor#*Xi_wcau|B?q>cL;I23DQx@wCL&sPZ(_b?-&3g6(tZf6dz0$

HMK2b;!_4Xg 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 diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c0e69e3a75..85a11f8779 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-12 05:49+0000\n" "Last-Translator: Jorge \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Busca \"%s\" en la Corriente" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,19 +37,20 @@ msgid " from " msgstr "desde" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Actualizaciones en respuesta a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" -#: ../actions/invite.php:170 -#, php-format -#, fuzzy +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, fuzzy, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" @@ -106,6 +107,7 @@ msgstr "" "Sinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ahora está escuchando tus avisos en %2$s" @@ -128,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Mensajes publicos de %s" @@ -156,34 +161,48 @@ msgstr "Mensajes publicos de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s y amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "línea temporal pública de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "estado de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "¡Actualizaciones de todos en %s!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,7 +210,8 @@ msgstr "" "(Deberías recibir un mensaje por correo eléctronico en unos momentos, con " "instrucciones sobre cómo confirmar tu dirección de correo.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -200,7 +220,8 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." @@ -212,33 +233,37 @@ msgstr ". Los colaboradores deben ser citados por su nombre completo o apodo." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios. " "Requerido." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o más caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o más caracteres, ¡no te olvides!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o más caracters. Requerido." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -249,6 +274,7 @@ msgstr "" "mensajes." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -284,7 +310,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "¡No se encontró el método de la API!" @@ -307,16 +360,23 @@ msgstr "¡No se encontró el método de la API!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método API en construcción." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Acerca de" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceptar" @@ -327,6 +387,9 @@ msgstr "Aceptar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Añadir" @@ -344,27 +407,29 @@ msgstr "Agregar o quitar OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Dirección" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direcciones de los amigos a invitar (una por línea)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas las suscripciones" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas las actualizaciones para %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" @@ -374,32 +439,39 @@ msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ya estás conectado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "¡Ya está suscrito!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "¿Estás seguro de que quieres eliminar este aviso?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar la suscripción" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " "compartidos! " #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -409,15 +481,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -428,6 +504,7 @@ msgstr "" "de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -436,7 +513,7 @@ msgstr "" "la de spam!) por un mensaje con las instrucciones." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Esperando confirmación de este número de teléfono." @@ -448,6 +525,8 @@ msgstr "Antes »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografía" @@ -455,16 +534,18 @@ msgstr "Biografía" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No se puede eliminar este aviso." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "No se puede leer el URL del avatar '%s'" @@ -472,6 +553,8 @@ msgstr "No se puede leer el URL del avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "No se puede guardar la nueva contraseña." @@ -479,31 +562,34 @@ msgstr "No se puede guardar la nueva contraseña." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Imposible crear una instancia del objeto OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "No se puede normalizar este Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Cambiar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Cambiar el manejo del correo." @@ -513,11 +599,12 @@ msgid "Change password" msgstr "Cambiar contraseña" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Cambia tu contraseña" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" @@ -527,6 +614,9 @@ msgstr "Cambia tus opciones de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -539,12 +629,14 @@ msgstr "Confirmar la dirección" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmación cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmación" @@ -553,7 +645,8 @@ msgstr "Código de confirmación" msgid "Confirmation code not found." msgstr "Código de confirmación no encontrado." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -571,7 +664,8 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, puedes...\n" +"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, " +"puedes...\n" "\n" "* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n" "* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar " @@ -586,20 +680,24 @@ msgstr "" "Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectarse" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectarse a una cuenta existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Ponerse en contacto" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "No se pudo crear el formulario OpenID: %s" @@ -607,43 +705,48 @@ msgstr "No se pudo crear el formulario OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "No puede seguir al usuario: %s ya esta en su lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "No puede seguir al usuario. Usuario no encontrado" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "No se pudo redirigir al servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "No se pudo guardar la información del avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "No se pudo guardar la información del nuevo perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 #, fuzzy msgid "Could not subscribe other to you." msgstr "No se pudo suscribir otro a tí." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No se pudo suscribir." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "No se pudo actualizar el usuario con la dirección de correo confirmada." +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -656,15 +759,17 @@ msgstr "No se pudieron convertir las clavesde petición a claves de acceso." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "No se pudo encontrar ningún estado." @@ -677,29 +782,38 @@ msgstr "No se pudo obtener la señal de petición." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No se pudo insertar el código de confirmación." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "No se pudo guardar el perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "No se pudo actualizar el usuario para autosuscribirse." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "No se pudo actualizar información de usuario." @@ -715,42 +829,48 @@ msgstr "No se pudo actualizar información de usuario." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "No se pudo actualizar el usuario." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un nuevo usuario con este apodo." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear una nueva cuenta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Crear nueva cuenta para un OpenID que ya tiene un usuario." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Dirección actual Jabber/Gtalk confirmada." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Actual número telefónico para SMS confirmado." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Actual dirección de correo electrónico confirmada" @@ -760,23 +880,27 @@ msgstr "Actualmente" # 'Hash' existe en español (http://es.wikipedia.org/wiki/Hash) pero lo cambio por 'clave' para ser más claros - @fauno #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD al insertar respuesta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Borrar aviso" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" @@ -784,11 +908,13 @@ msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correo electrónico" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Correo Electrónico" @@ -798,39 +924,43 @@ msgid "Email Settings" msgstr "Opciones de Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "La dirección de correo electrónico ya existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmación de correo electrónico" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Correo electrónico, como \"NombredeUsuario@ejemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Direcciones de correo electrónico" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Ingresa un apodo o correo electronico" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Ingrese el código recibido en su teléfono" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error al autorizar clave" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error al conectar tu usuario a OpenID" @@ -841,39 +971,46 @@ msgstr "Error al conectar usuario" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error al insertar el avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error al insertar el nuevo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error al insertar perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error al guardar confirmación de la dirección." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error al guardar perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error al guardar el perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error al guardar el usuario." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error al guardar el usuario; inválido." @@ -882,6 +1019,9 @@ msgstr "Error al guardar el usuario; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error al configurar el usuario." @@ -892,6 +1032,7 @@ msgstr "Error al actualizar el perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error al actualizar el perfil remoto" @@ -901,33 +1042,36 @@ msgid "Error with confirmation code." msgstr "Error con el código de confirmación." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Apodo existente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntas Frecuentes" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Error al actualizar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed de los amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed de respuestas a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para tag %s" @@ -942,7 +1086,7 @@ msgstr "Encontrar el contenido de avisos" msgid "Find people on this site" msgstr "Encontrar gente en este sitio" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -955,6 +1099,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nombre completo" @@ -963,23 +1112,33 @@ msgstr "Nombre completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ayuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Inicio" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Página de inicio" @@ -987,21 +1146,27 @@ msgstr "Página de inicio" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Deseo enviar estados por email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Dirección de mensajería instantánea" @@ -1011,7 +1176,7 @@ msgid "IM Settings" msgstr "Configuración de mensajería instantánea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1019,7 +1184,7 @@ msgstr "" "Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " "conectarla con tu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1027,7 +1192,7 @@ msgstr "" "Si quieres agregar una cuenta OpenID, ponla en el campo de abajo y haz clic " "en \"Añadir\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1038,25 +1203,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correo entrante" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Dirección de correo entrante removida." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contraseña antigua incorrecta." #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nombre de usuario o contraseña incorrectos." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1065,30 +1236,31 @@ msgstr "" "correo registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "El URL del avatar '%s' es inválido" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Dirección de correo electrónico inválida: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "La página de incicio '%s' no es válida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "El URL de la licencia '%s' es inválido" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "El contenido del aviso es inválido" @@ -1103,13 +1275,13 @@ msgid "Invalid notice url" msgstr "El URL del aviso es inválido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "El URL del perfil '%s' es inválido" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "El URL del perfil es inválido (formato incorrecto)" @@ -1127,28 +1299,35 @@ msgstr "Tamaño inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Usuario o contraseña inválidos." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitacion(es) enviada(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitacion(es) enviada(s) a las siguientes personas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar nuevos usuarios:" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1160,11 +1339,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "El Jabber ID ya pertenece a otro usuario." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1175,12 +1355,14 @@ msgstr "" "mensajería instantánea o en GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Idioma es muy largo ( max 50 car.)" @@ -1189,7 +1371,15 @@ msgstr "Idioma es muy largo ( max 50 car.)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicación" @@ -1198,7 +1388,12 @@ msgstr "Ubicación" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." @@ -1207,18 +1402,22 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inicio de sesión" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Inicio de sesión con una cuenta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1229,22 +1428,26 @@ msgstr "" "(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." "openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Salir" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "¿Contraseña olvidada o perdida?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." @@ -1255,16 +1458,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestiona la forma en que recibes correo desde %%site.name%%" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Miembro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1277,42 +1482,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mi texto y archivos están disponibles bajo" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nuevo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nueva dirección de correo para postear a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nuevo apodo" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nuevo aviso" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nueva contraseña" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." @@ -1322,7 +1535,13 @@ msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Apodo" @@ -1331,7 +1550,12 @@ msgstr "Apodo" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "El apodo ya existe. Prueba otro." @@ -1340,49 +1564,60 @@ msgstr "El apodo ya existe. Prueba otro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "El apodo debe tener solamente letras minúsculas y números y no puede tener " "espacios. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Apodo prohibido." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Apodo del usuario que quieres seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Apodo o correo electrónico" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ningún Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "¡Ninguna petición de autorización!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "No se seleccionó un operador móvil." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No ingresó código" @@ -1394,11 +1629,15 @@ msgstr "Ningún código de confirmación." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "¡Ningún contenido!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Sin dirección de correo electrónico" @@ -1407,7 +1646,9 @@ msgid "No id." msgstr "Ningún identificador." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No hay dirección de correo entrante." @@ -1418,6 +1659,7 @@ msgstr "Ningún apodo devuelto por el servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Ningún apodo." @@ -1425,12 +1667,14 @@ msgstr "Ningún apodo." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Sin número telefónico" @@ -1440,7 +1684,8 @@ msgid "No profile URL returned by server." msgstr "Ningun URL de perfil devuelto por el servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ninguna dirección de correo electrónico registrada por este usuario." @@ -1452,7 +1697,7 @@ msgstr "¡Ninguna petición encontrada!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ningún resultado" @@ -1463,12 +1708,16 @@ msgstr "Ningún tamaño." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No se encontró estado para ese ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No hay estado para ese ID" @@ -1478,13 +1727,15 @@ msgid "No such OpenID." msgstr "No existe esa cuenta OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No existe ese documento." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No existe ese aviso." @@ -1522,12 +1773,22 @@ msgstr "No existe esa suscripción" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No existe ese usuario." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." @@ -1541,32 +1802,38 @@ msgid "Not a recovery code." msgstr "No es un código de recuperación." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "No es un usuario registrado" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID no válido" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "La cuenta OpenID no es válida." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "No es una dirección de correo electrónico válida" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -1574,6 +1841,11 @@ msgstr "Correo electrónico no válido" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Apodo no válido" @@ -1593,7 +1865,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de perfil no válido (ningún documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "No es una imagen o es un fichero corrupto." @@ -1604,11 +1877,13 @@ msgstr "No autorizado." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Respuesta inesperada!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "No encontrado" @@ -1624,11 +1899,15 @@ msgstr "No encontrado" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "No conectado." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "¡No estás suscrito!" @@ -1645,39 +1924,44 @@ msgid "Notice feed for %s" msgstr "Feed de avisos de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Aviso sin perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Avisos" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Avisos marcados con %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Antigua contraseña" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "Cuenta OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuración de la Cuenta OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-envío de OpenID" @@ -1685,29 +1969,34 @@ msgstr "Auto-envío de OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Ingreso desde una cuenta OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL de la cuenta OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticación OpenID cancelada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticación OpenID fallida: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Error OpenID: %s" @@ -1723,11 +2012,12 @@ msgid "OpenID settings" msgstr "Configuración OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente añada un mensaje personalizado a su invitación." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Carga parcial." @@ -1737,34 +2027,46 @@ msgstr "Carga parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contraseña" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La contraseña y la confirmación no coinciden." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La contraseña debe tener 6 o más caracteres." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Recuperación de contraseña solicitada" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Se guardó Contraseña." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Las contraseñas no coinciden" @@ -1784,14 +2086,17 @@ msgid "People search" msgstr "Buscador de gente" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensaje Personal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" @@ -1806,7 +2111,7 @@ msgstr "" "\"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." @@ -1815,7 +2120,9 @@ msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencias" @@ -1824,42 +2131,52 @@ msgstr "Preferencias" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferencias guardadas." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Lenguaje de preferencia" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidad" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuración del perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconocido" @@ -1868,17 +2185,19 @@ msgid "Public Stream Feed" msgstr "Feed del flujo público" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Línea temporal pública" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID para mi dirección de correo." @@ -1888,12 +2207,14 @@ msgid "Recent Tags" msgstr "Tags recientes" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contraseña" @@ -1906,37 +2227,45 @@ msgstr "Código de recuperación para usuario desconocido." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registro de usuario no permitido." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registro exitoso." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rechazar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Recordarme" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remoto sin perfil coincidente" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Subscripción remota" @@ -1950,6 +2279,9 @@ msgstr "Subscripción remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" @@ -1958,7 +2290,7 @@ msgstr "Eliminar" msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1967,34 +2299,41 @@ msgstr "" "eliminarlo, agrega otro antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respuestas" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respuestas a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restablecer" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restablecer contraseña" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número telefónico para sms" @@ -2003,17 +2342,18 @@ msgstr "Número telefónico para sms" msgid "SMS Settings" msgstr "Preferencias SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS confirmación" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual a la contraseña de arriba" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" @@ -2026,12 +2366,21 @@ msgstr "Igual a la contraseña de arriba. Requerida" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Buscar" @@ -2041,7 +2390,7 @@ msgid "Search Stream Feed" msgstr "Feed del flujo de búsqueda" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2050,7 +2399,7 @@ msgstr "" "Buscar avisos en %%site.name%% por contenido. Separa los términos de " "búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2060,33 +2409,38 @@ msgstr "" "los términos con espacios; deben tener una longitud mínima de 3 caracteres." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Seleccione un operador móvil" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Envie emails a esta dirección para ingresar nuevos avisos" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme avisos de suscripciones nuevas por correo." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme avisos por Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2095,16 +2449,19 @@ msgstr "" "mi operador móvil" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuración" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Se guardó configuración." @@ -2124,27 +2481,32 @@ msgid "Something weird happened." msgstr "Algo raro pasó." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Lo sentimos, pero no se permite correos entrantes" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Lo sentimos, pero este no es su dirección de correo entrante." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fuente" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estadísticas" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "No se ha encontrado el OpenID almacenado." @@ -2152,24 +2514,28 @@ msgstr "No se ha encontrado el OpenID almacenado." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Suscribirse" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Suscriptores" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Suscripción autorizada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Suscripción rechazada" @@ -2177,28 +2543,35 @@ msgstr "Suscripción rechazada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Suscripciones" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Error del sistema al cargar el archivo." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Búsqueda de texto" @@ -2218,6 +2591,7 @@ msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación no es para ti!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Esa dirección de correo pertenece a otro usuario." @@ -2227,63 +2601,73 @@ msgid "That file is too big." msgstr "Ese archivo es demasiado grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ese ya es tu Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Esa ya es tu dirección de correo electrónico" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Ese ya es tu número telefónico" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ese no es tu Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esa no es tu dirección de correo electrónico" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Ese no es tu número telefónico" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Esa dirección de mensajería instantánea es incorrecta." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Ese no es el número de confirmación" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Ese número telefónico ya pertenece a otro usuario" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Es demasiado largo. La longitud máxima es de 255 caracteres. " #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "La dirección \"%s\" fue confirmada para tu cuenta." @@ -2292,11 +2676,14 @@ msgstr "La dirección \"%s\" fue confirmada para tu cuenta." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "La dirección fue eliminada." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2693,8 @@ msgstr "" "Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " "identificador de suscripción es:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2317,35 +2705,40 @@ msgstr "" "completamente." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Estas son las personas que escuchan los avisos de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Estas son las personas que escuchan tus avisos." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Estas son las personas que %s escucha sus avisos." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Estas son las personas que escuchas sus avisos." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" "Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2354,7 +2747,7 @@ msgstr "" "clic en el botón de envío para ir a tu proveedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2369,6 +2762,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requiere un PUBLICAR O ELIMINAR" @@ -2377,25 +2773,37 @@ msgstr "Este método requiere un PUBLICAR O ELIMINAR" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método requiere PUBLICAR" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página no está disponible en el tipo de medio que aceptas." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Zona horaria" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2408,18 +2816,21 @@ msgstr "" "tu perfil debajo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" @@ -2431,15 +2842,22 @@ msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restablecimiento de contraseña inesperado." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acción desconocida" @@ -2470,38 +2888,47 @@ msgstr "Cancelar suscripción" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versión OMB no soportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de imagen no soportado." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Actualizaciones por sms" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Cargar" @@ -2522,14 +2949,16 @@ msgid "Upload a new profile image" msgstr "Cargar una nueva imagen de perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Usa este formulario para invitar a tus amigos y colegas a usar este " -"servicio." +"Usa este formulario para invitar a tus amigos y colegas a usar este servicio." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" @@ -2554,11 +2983,16 @@ msgstr "El usuario al que quieres seguir no existe." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "El usuario no tiene un perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Apodo del usuario" @@ -2567,29 +3001,33 @@ msgid "User not found." msgstr "Usuario no encontrado" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "En que zona horaria se encuentra normalmente?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "¿Qué tal, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imagen incorrecto para '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamaño de imagen incorrecto para '%s'" @@ -2597,7 +3035,9 @@ msgstr "Tamaño de imagen incorrecto para '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sí" @@ -2620,11 +3060,12 @@ msgid "You are already logged in!" msgstr "¡Ya te has conectado!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ya estás suscrito a estos usuarios:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No eres amigo del usuario especificado." @@ -2640,9 +3081,10 @@ msgstr "Puedes crear una nueva cuenta y empezar a enviar avisos." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." +msgstr "" +"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2651,6 +3093,7 @@ msgstr "" "\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2659,7 +3102,8 @@ msgstr "" "Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " "Jabber/GTalk. Configura tu dirección y opciones abajo." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2670,21 +3114,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Puedes usar la suscripción local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "No nos enviaste ese perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2706,16 +3152,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "No puedes borrar el estado de otro usuario." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Debes estar conectado para invitar otros usuarios a usar %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2723,22 +3172,23 @@ msgstr "" "Recibirás un mensaje cuando tus invitados acepten tu invitacion y se " "registren en el sitio. ¡Gracias por extender la comunidad! " -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Te has identificado. Escribe una nueva contraseña a continuación." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "El URL de tu OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Tu nombre de usuario en este servidor, o la dirección de correo electrónico " "registrada." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2747,47 +3197,57 @@ msgstr "" "[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " "cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "hace unos segundos" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "hace un día" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "hace un minuto" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "hace un mes" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "hace un año" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "hace una hora" @@ -2809,12 +3269,14 @@ msgid "reply" msgstr "responder" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "repita la contraseña anterior" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de archivo soportado" @@ -2836,6 +3298,26 @@ msgstr "« Después" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." @@ -2845,6 +3327,7 @@ msgid "This notice is not a favorite!" msgstr "¡Este aviso no es un favorito!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "No se pudo borrar favorito." @@ -2852,24 +3335,30 @@ msgstr "No se pudo borrar favorito." msgid "Favor" msgstr "Aceptar" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "¡Este aviso ya está en favoritos!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "No se pudo crear favorito." @@ -2879,11 +3368,13 @@ msgstr "Sacar" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s avisos favoritos" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de avisos favoritos de %s" @@ -2926,33 +3417,44 @@ msgid "Login with your username and password. " msgstr "Entrar con nombre y contraseña de usuario." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Demasiado largo. Máximo 140 caracteres. " #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No se especificó receptor." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "No puedes enviar mensaje a este usuario." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "No existe el usuario." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nuevo Mensaje " @@ -2990,8 +3492,7 @@ msgstr "Bandeja de salida para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Ésta es tu bandeja de salida, incluye la lista de mensajes privados " -"enviados." +"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format @@ -3008,6 +3509,11 @@ msgstr "Puedes actualizar aquí tu información de perfil personal" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuario sin perfil equivalente" @@ -3036,6 +3542,8 @@ msgid "New password successfully saved. " msgstr "Se guardo exitosamente la nueva contraseña." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Cotrnaseña debe tener 6 o más caracteres." @@ -3058,12 +3566,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para suscribirse, puedes [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed para favoritos de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No se pudo recibir avisos favoritos." @@ -3071,7 +3582,7 @@ msgstr "No se pudo recibir avisos favoritos." msgid "No such message." msgstr "No existe el mensaje." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Sólo el remitente y el receptor pueden leer este mensaje." @@ -3095,51 +3606,70 @@ msgid "Mobile carrier for your phone. " msgstr "Operador móvil para tu teléfono." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensajes directos a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Todos los mensajes directos enviados a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensajes directos que has enviado" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todos los mensajes directos enviados desde %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "¡Sin texto de mensaje!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "No se encuentra usuario receptor." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritos desde %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s actualizaciones favoritas por %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s agregó tu aviso a favoritos" @@ -3161,14 +3691,17 @@ msgstr "" "Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuración de Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Cuenta Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Cuenta Twitter actual verificada." @@ -3177,6 +3710,7 @@ msgid "Twitter Username" msgstr "Nombre de usuario Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sin espacios, por favor." @@ -3185,18 +3719,22 @@ msgid "Twitter Password" msgstr "Contraseña Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar automáticamente mis avisos a Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respuestas \"@\" locales a Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Suscribir a mis amigos Twitter aquí." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3205,6 +3743,7 @@ msgstr "" "y subrayadas (_). Máx. 15 caracteres." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "¡No se pudo verificar tus credenciales Twitter!" @@ -3215,33 +3754,43 @@ msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "¡No se pudo guardar tu configuración de Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Se guardó configuración de Twitter." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "No es tu cuenta Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "No se pudo eliminar usuario Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Se eliminó cuenta Twitter." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "No se pudo guardar preferencias de Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Se guardó preferencias de Twitter." @@ -3258,18 +3807,19 @@ msgid "The subscription has been rejected, but no " msgstr "Se rechazó la suscripción, pero no" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados de comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completo" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando falló" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." @@ -3279,89 +3829,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Suscripciones: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Usuario no tiene último aviso" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Aviso marcado como favorito." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nombre completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Lugar: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Se envió mensaje directo a %s" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error al enviar mensaje directo." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especificar el nombre del usuario a suscribir" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especificar el nombre del usuario para desuscribirse de" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscrito de %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificación no activa." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificación activada." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "No se puede activar notificación." @@ -3369,11 +3941,11 @@ msgstr "No se puede activar notificación." msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "No se pudo insertar mensaje." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." @@ -3390,7 +3962,7 @@ msgstr "" "Tienes nueva dirección para publicar en %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nuevo mensaje privado de %s" @@ -3404,7 +3976,7 @@ msgstr "" "%1$s (%2$s) te envió un mensaje privado:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Sólo el usuario puede leer sus bandejas de correo." @@ -3413,31 +3985,39 @@ msgid "This form should automatically submit itself. " msgstr "Este formulario debería enviarse automáticamente." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritos" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Avisos favoritos de %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Bandeja de Entrada" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Mensajes entrantes" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Bandeja de Salida" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Mensajes enviados" @@ -3450,14 +4030,19 @@ msgid "Twitter integration options" msgstr "Opciones de integración de Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Para" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "No se pudo analizar sintácticamente mensaje." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s y amigos, página %d" @@ -3467,22 +4052,32 @@ msgid "You can upload your personal avatar." msgstr "Puedes cargar tu avatar personal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Configuración de Avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Cortar" @@ -3499,36 +4094,45 @@ msgid "There was a problem with your session token. " msgstr "Hubo problemas con tu clave de sessión." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Se perdió nuestros datos de archivo." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Se perdió nuestro archivo" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "tipo de archivo desconocido" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No se especificó perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No existe perfil con ese ID" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Bloquear usuario." @@ -3537,12 +4141,12 @@ msgstr "Bloquear usuario." msgid "Are you sure you want to block this user? " msgstr "¿Seguro de que quieres bloquear este usuario?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Ya bloqueaste este usuario." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." @@ -3560,40 +4164,58 @@ msgstr "¿Estás seguro de que quieres eliminar permanentemente este aviso?" msgid "Add to favorites" msgstr "Agregar a favoritos" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar grupo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Se debe habilitar las bandejas de entrada para grupos" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Debes estar conectado para crear un grupo" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Ningún apodo." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "No existe ese grupo" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Debes ser un admin para editar el grupo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." @@ -3603,16 +4225,17 @@ msgid "Nickname must have only lowercase letters " msgstr "El apodo sólo debe tener letras en minúscula" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Se guardó configuración de Opciones." @@ -3630,7 +4253,8 @@ msgstr "Crear una nueva dirección de correo electrónico para publicar;" msgid "Send me email when someone " msgstr "Enviarme un correo cuando alguien" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me contacten y envién un correo." @@ -3646,7 +4270,7 @@ msgstr "" "Un código de confirmación fue enviado a la dirección de correo electrónico " "que agreaste. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "¡Error de servidor - no se pudo acceder a usuario!" @@ -3660,55 +4284,70 @@ msgstr "Si quieres que la aplicación %s se actualice automáticamente" msgid "Allow %s to update my Facebook status" msgstr "Permitir que %s actualice mi estado de Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Saltar" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "¡Aviso sin contenido!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginación" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Después" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Antes" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Gracias por invitar a tus amigos a usar %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Se enviarón invitaciones a los siguientes usuarios: " -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Te invitaron a %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Invita a tus amigos a usar %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amigos que ya usan %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar invitaciones" @@ -3754,12 +4393,14 @@ msgstr "Si quieres que %s se actualice automáticamente" msgid "Sync preferences" msgstr "Preferencias de sincronización" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Sacar favorito" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Avisos populares" @@ -3775,7 +4416,8 @@ msgid "The most popular notices on the site right now." msgstr "Ahora se muestran los avisos más populares en el sitio." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuarios que figuran" @@ -3789,15 +4431,17 @@ msgstr "Usuarios que figuran, página %d" msgid "A selection of some of the great users on %s" msgstr "Una selección de algunos de los grandes usuarios en %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Ese usuario te ha bloqueado la suscripción." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Sin ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo de grupo" @@ -3805,12 +4449,14 @@ msgstr "Logo de grupo" msgid "You can upload a logo image for your group." msgstr "Puedes cargar una imagen de logo para tu grupo." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "SE actualizó logo." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Error al actualizar logo." @@ -3830,7 +4476,8 @@ msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -3845,6 +4492,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "Los grupos %%%%site.name%%%% dejan que los encuentres y les hables " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Crear un grupo nuevo" @@ -3855,7 +4503,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Buscar grupos en %%site.name%% por nombre, lugar o descripción." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Buscador de grupos" @@ -3879,21 +4527,21 @@ msgstr "Enviarme avisos a través de Jabber/GTalk" msgid "A confirmation code was sent " msgstr "Se envió un código de confirmación." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Debes estar conectado para unirte a un grupo." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Ya eres miembro de ese grupo" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "No se puede unir usuario %s a grupo %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s se unió a grupo %s" @@ -3902,16 +4550,19 @@ msgstr "%s se unió a grupo %s" msgid "Inboxes must be enabled for groups to work." msgstr "Se debe habilitar bandejas de entrada para que funcionen grupos." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "No existe ese grupo." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "No eres miembro de ese grupo" @@ -3920,22 +4571,26 @@ msgstr "No eres miembro de ese grupo" msgid "You may not leave a group while you are its administrator." msgstr "No puedes dejar un grupo mientras seas su administrador." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "No se pudo encontrar registro de miembro" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "No se pudo eliminar a usuario %s de grupo %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s dejó grupo %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Ingresar a sitio" @@ -3947,16 +4602,18 @@ msgstr "No existe estado actual" msgid "New group" msgstr "Grupo nuevo " -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa este formulario para crear un grupo nuevo." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "No se pudo crear grupo." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." @@ -3970,12 +4627,15 @@ msgstr "Ese demasiado largo." msgid "Don't send a message to yourself; " msgstr "No te auto envíes un mensaje;" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Aviso publicado" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Error de Ajax" @@ -3996,7 +4656,7 @@ msgstr "Se envió zumbido" msgid "Nudge sent!" msgstr "¡Zumbido enviado!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ingreso de OpenID" @@ -4024,11 +4684,13 @@ msgstr "Acorte automático de URL" msgid "Service" msgstr "Servicio" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Servicio de acorte de URL demasiado largo (máx. 50 caracteres)." @@ -4038,17 +4700,18 @@ msgstr "Servicio de acorte de URL demasiado largo (máx. 50 caracteres)." msgid "Change your password." msgstr "Cambia tu contraseña." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Cambio de contraseña " -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "No es un tag de personas válido: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto marcados con %s - página %d" @@ -4058,12 +4721,13 @@ msgstr "Usuarios auto marcados con %s - página %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Estos usuarios se han marcado \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Información de perfil " -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" @@ -4074,21 +4738,26 @@ msgid "Automatically subscribe to whoever " msgstr "Suscribirse automáticamente a quien quiera " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Tag no válido: '%s' " -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "No se pudo guardar tags." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Línea de tiempo pública, página %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "No se pudo acceder a corriente pública." @@ -4098,8 +4767,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Es un %%site.name%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " #: actions/publictagcloud.php:57 #, fuzzy @@ -4111,11 +4780,13 @@ msgstr "Nube de tags pública" msgid "These are most popular recent tags on %s " msgstr "Éstos son los tags recientes más populares en %s" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Nube de tags" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Disculpa, sólo personas invitadas pueden registrarse." @@ -4171,7 +4842,8 @@ msgstr "(Debieras recibir un mensaje por correo" msgid "That's a local profile! Login to subscribe." msgstr "¡Es un perfil local! Ingresa para suscribirte" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Respuestas a %s, página %d" @@ -4181,53 +4853,74 @@ msgstr "Respuestas a %s, página %d" msgid "%s favorite notices, page %d" msgstr "%s avisos favoritos, página %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Grupo %s, página %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Perfil de grupo" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Nota" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Miembros" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Todos los miembros" @@ -4244,7 +4937,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Sólo el remitente y el receptor" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, página %d" @@ -4255,33 +4948,40 @@ msgid "'s profile" msgstr "Perfil de" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Perfil de usuario" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Acciones de usuario" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Enviar un mensaje directo a este usuario" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Mensaje" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todos los suscriptores" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Todos los grupos" @@ -4291,8 +4991,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4307,9 +5007,10 @@ msgstr "Enviarme avisos por SMS;" #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "Se envió un código de confirmación al número de teléfono que agregaste." +msgstr "" +"Se envió un código de confirmación al número de teléfono que agregaste." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Operador móvil" @@ -4374,17 +5075,18 @@ msgstr "Estas son las personas cuyos avisos" msgid "These are the people whose " msgstr "Estas son las personas cuyos" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabber " -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Avisos marcados con %s, página %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Mensajes marcados \"%s\", el más reciente primero" @@ -4407,7 +5109,7 @@ msgstr "%s tag" msgid "Tag user" msgstr "Usuario de tag" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4418,19 +5120,19 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Sólo puedes marcar a las personas a quienes estás suscrito o que están " "suscritas a ti." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "No se pudo guardar tags." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usar este formulario para agregar tags a tus suscriptores o suscripciones." @@ -4439,20 +5141,23 @@ msgstr "" msgid "No such tag." msgstr "No existe ese tag." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog marcado con %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Falló bloquear usuario." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Falló desbloquear usuario." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "No se encontró." @@ -4461,15 +5166,16 @@ msgstr "No se encontró." msgid "Add your Twitter account to automatically send " msgstr "Agregar tu cuenta Twitter a enviar automáticamente" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nombre de usuario de Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Contraseña de Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amigos en Twitter" @@ -4482,159 +5188,168 @@ msgstr "Nombre de usuario sólo debe tener números, " msgid "Unable to retrieve account information " msgstr "No se pudo acceder a información de cuenta" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Error al sacar bloqueo." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Ningún perfil de Id en solicitud." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Ningún perfil con ese ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupos %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Grupos %s, página %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Cargar un avatar." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Otro" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Otras opciones" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Página sin título" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegación de sitio primario" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea de tiempo de amigos" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Cuenta" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Conectarse a IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Ingresar con OpenID." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "¡Ayúdame!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Todo" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "Licencia." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Bloquear este usuario." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4647,12 +5362,15 @@ msgstr "Sacar este aviso" msgid "To use the %s Facebook Application you need to login " msgstr "Para usar la Aplicación de Facebook %s debes ingresar" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "una cuenta nueva. " #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Publicado" @@ -4674,34 +5392,39 @@ msgstr "Filtrar tags" msgid "All" msgstr "Todo" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elegir tag para reducir lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "El URL de página de inicio o blog del grupo or tema" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Descripción" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Describir al grupo o tema en 140 caracteres" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4712,21 +5435,21 @@ msgstr "" msgid "Group" msgstr "Grupo" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propiedades del grupo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Agregar o editar el logo de %s" @@ -4759,12 +5482,12 @@ msgstr "Unirse" msgid "Leave" msgstr "Dejar" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ingresar con un nombre de usuario y contraseña." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Registrar una cuenta nueva " @@ -4787,17 +5510,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s ahora está escuchando " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Lugar: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Página de inicio: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4806,7 +5529,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s te mandó un zumbido " @@ -4821,43 +5544,51 @@ msgstr "%1$s (%2$s) quiere saber qué estás haciendo" msgid "%1$s just added your notice from %2$s" msgstr "%1$s recién agregó tu aviso de %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "Desde" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar un aviso directo" # ¿zumbido? creo que así lo traduce msn -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Enviar un aviso" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Caracteres disponibles" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en respuesta a..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Borrar este aviso" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Borrar" @@ -4881,27 +5612,29 @@ msgstr "Enviar zumbido a este usuario" msgid "Tags in %s's notices" msgstr "Tags en avisos de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(ninguno)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grupos de usuario" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Tags recientes" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacado" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4918,31 +5651,33 @@ msgstr "Encontrar grupos en este sitio" msgid "Untitled section" msgstr "Sección sin título" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Personas a las que %s está suscrito" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Personas suscritas a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s es miembro de los grupos" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "El usuario te ha bloqueado." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" @@ -4956,11 +5691,12 @@ msgid "Top posters" msgstr "Principales posteadores" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Desbloquear este usuario" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" @@ -4968,6 +5704,2068 @@ msgstr "Desbloquear" msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s y amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Puedes cargar tu avatar personal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " +"deshacer" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puedes cargar una imagen de logo para tu grupo." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " +"los términos con espacios; deben tener una longitud mínima de 3 caracteres." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error al enviar mensaje directo." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Busca \"%s\" en la Corriente" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " +"contraseña antes de cambiar tu configuración." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flujo público" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flujo público" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flujo público" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto los siguientes datos privados: contraseña, dirección de correo " +"electrónico, dirección de mensajería instantánea, número de teléfono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Perfil de grupo" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Perfil de" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Bandeja de salida para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración del perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un código de confirmación fue enviado al número de teléfono que agregaste. " +"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " +"instrucciones sobre cómo usarlo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "No existe el usuario." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " +"avisos de este usuario. Si no pediste esta suscripción, haz clic en " +"\"Cancelar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Buscar personas o texto" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " +"minutos." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Conectarse a IM, SMS, Twitter" + +# ¿zumbido? creo que así lo traduce msn +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Zumbido " + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Para usar la Aplicación de Facebook %s debes ingresar" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"\t%1$s ahora está escuchando tus avisos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Buscar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existe ese documento." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lista de los usuarios en este grupo." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista de los usuarios en este grupo." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de usuario" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s y amigos, página %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista de los usuarios en este grupo." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Falló desbloquear usuario." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No se puede eliminar este aviso." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Tag no válido: '%s' " + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "El apodo ya existe. Prueba otro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No se pudo crear favorito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuevo aviso" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuevo aviso" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Apodo no válido" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No se especificó perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "El usuario te ha bloqueado." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No eres miembro de ese grupo" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar conectado para crear un grupo" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupos" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No se pudo actualizar el usuario." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "¡No se pudo guardar tu configuración de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias de sincronización guardadas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Debes ser un admin para editar el grupo" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ningún resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "El usuario te ha bloqueado." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Mensaje" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "No se pudo guardar el perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " +"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración del perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " +"la dirección de correo electrónico que almacenaste en tu cuenta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Te has identificado. Escribe una nueva contraseña a continuación." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Recuperación de contraseña solicitada" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error con el código de confirmación." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Suscribirse a este usuario" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s avisos favoritos, página %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" +"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "No es usuario local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Avisos marcados con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s ahora está escuchando " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed de avisos de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed de avisos de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "¡Este aviso ya está en favoritos!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "¡Este aviso no es un favorito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "No se pudo acceder a corriente pública." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No se especificó receptor." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No se pudo encontrar ningún estado." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizaciones en respuesta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "Licencia." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Suscripciones %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No eres miembro de ese grupo" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Hubo un problema al guardar el aviso." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaje a %1$s en %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Perfil de usuario" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Cargar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambia tu contraseña" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectarse" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inicio de sesión" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuario." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Agregar o editar el logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "¡Ningún contenido!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "La página de inicio no es un URL válido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No existe ese tag." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensajes directos a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Demasiado largo. Máximo 140 caracteres. " + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No puede seguir al usuario. Usuario no encontrado" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ya eres miembro de ese grupo" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No se puede unir usuario %s a grupo %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "No eres miembro de ese grupo" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No se pudo eliminar a usuario %s de grupo %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupos %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s es miembro de los grupos" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Acciones del grupo" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de imagen no soportado." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "El usuario al que quieres seguir no existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No se pudieron convertir las clavesde petición a claves de acceso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión desconocida del protocolo OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No existe ese aviso." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Se perdió nuestro archivo" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página no está disponible en un " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" +"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." +"openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descríbete y cuenta de tus " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografía es demasiado larga (máx. 140 caracteres)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no válido (ningún documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "¡Es un perfil local! Ingresa para suscribirte" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "No se pudo obtener la señal de petición." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed de avisos de grupo %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaje a %1$s en %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Grupo %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Aviso publicado" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Esta página no está disponible en un " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed de avisos de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " +"avisos de este usuario. Si no pediste esta suscripción, haz clic en " +"\"Cancelar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " +"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " +"identificador de suscripción es:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " +"de nuevo las instrucciones para saber cómo rechazar la suscripción " +"completamente." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "No se puede leer el URL del avatar '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagen incorrecto para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "No se pudo redirigir al servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencia de software de StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Se envió zumbido" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder este aviso." + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Hubo un problema al guardar el aviso." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ningún código de confirmación." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Ingresar a sitio" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Seleccione un operador móvil" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Describir al grupo o tema en 140 caracteres" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describir al grupo o tema en 140 caracteres" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed de avisos de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s agregó tu aviso a favoritos" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "desde" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "No se pudo borrar favorito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Borrar aviso" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Crear una nueva cuenta" diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index 7e64ddb00d44ed4e59db664dc03fd8901bd86882..3aca83c61d5e39365ee67889ada2d21f08deaa3a 100644 GIT binary patch delta 29179 zcmajn2YeJow9vcs-jON-LLf(SkOH|2h#)7}K2YUlW1u2S3wV^1=|MR_>AW!@M_Vt>)r|s^{?9A*Y_&mRDD01(%qM;)dO#e*m=h9E z7ifZNU|UoJd!y=2K;1A0HROxXi>qz^cGQTxhq}+#7*fT!be=nwN2P0_o?%1OGi{9x zuoHH`DVT*1+VYYxMsQXG!g;a9i>Yfa~I;*+R3(STMb;dpFehZk-6AE-xIG}kQGim1t#g!QmB zY6QljCShnEkz^vvt=q8~>CaIWO3g5jqBb@n-3m2yH(^!07j@xBP>=FW)FU{J4KZb= z$sdmWNzcOe_!{zvL!L`S)YGzgro~mP$<{Wg$=4fKV>WVaPfWm!L;y8n8&KDI6ieXK zs1bS*HFtKP7Z2O=Kd^|_f03ZMaVb>A8mOV}gcY$5>e-G(J^NhLGMkOnaV2W`K8>2h zdr|v@!<4UqwNVZ0h#JA}sQYALUGDE$LZkvdkBPV&b;3z3i>I*){*L9a{4DbbyjYp^ zU{v{J)QxXO-FOX_$E~RA?6&0}pssTcL+a^YMAWkqOidM3z<5kVHLL^b!UM4#X5vWP zh}xomL7m_47BdpVPz~^7Jl=_w@Ih3)t=5-rVf;&z@j4mJ@m=)d71R)W=b9nzh`P`y zo6bf}+C}KaXR$uMhZ@0)SOcrg^LScfYgBm#>blENt6@5`6fRFRlgr9e;TG>2-Tr2il}9;VJkd^nj|%7 zSPSf98+bF;BE25fvmG{l5Y>~PQ8$Xe&1_&DQ1x#>mCr&wg0)x`pRwuC8$=qA@hPeY zo&{zy)k39PVI3TXnv^q8t70~4WbVP}#ncK}scu^bDb*Q2B+x%6ijpUWz--4gZeM_8v}NIhLZL__`{s^vRT7dnWVwU6;yP3hZbA+HEY!#>LDgG@C2%tq z$7fL^Re(BgA8J`2K~3UcQ5}oF$Jp^6#$P>|K!$n{L@%zgMo{G+qlWl2YNY-^^`QE_ z=0^2VH|k;?gN;egz)83sGw@H;2>X_pRS^miDM7{^SRa>RY21!6xEu8d_M&=z7&Rxp z!qRvSOX43kzvxnvUm1&%pNMK$3Tgzp+jJVLW1(A!sAnrN4j)DhmcnMJj&#B)I1E#@{-* zU&p!FWrZ1u9jFGphU&>X*a%NzV=TAQ%!N*QH$4O zOWcooc7I?qj9G0qj+Uqsd*UukL)ELZ#`L^CssY#ILY$6zq~}nN^e3!`mr-*m@jk}C z7?B1@%DHE2^hO!p3;ivTKOy&>(Dp z^TLe(14K5HF$25aZ(963>IU0UJ=}wp@c^daQPjp$e64w8^{_1I_NYnM7aQVm?2PkJ zb6^KH!NaHq7khy5SC5iug+`*KwIe2w?tv;FkMZco_P78$;0{zze#UZGbDfzhO|Tm2 z9;k+mLp5L;F2Z}TK2{2?H(#k8u`U^1Q2W7TOvEhIBUy%O$OEVzK5o-5pz6Jf?eG}Z zz=Q|QBW!~ji7u$sk%_&~#VQ#3l!$t84)x5cK4jK!3hLQ5Mm>ras1fOkdK6<(Je zI3IPv^{58FfV$o**7vaz>Eo#LE+UUMdg-F%O#_c~L!Vj=D}S)X0strlaOU9;%@WupIaItRkWwK7v*8In)sEv-zJ}zeQc} z7i;VzW;Rzq4QUtDdLM#n=m=CprlPKQGwS+Fu_kWDkcQ@UB5L^|)R3LV>R4oxspv)3 z>x{}DflV<7HFE250KSP$u;OMjLS0b}n}E7uHtG@HgBs!0n;C!gXagA#nK{a3{YME_7UHA}c-}n_(?~2W@`nVbTwx|yE!y-5q)$@rqe_Du$CfQt6 z&+bOeg)pY#W~_}LVQc&m8)JhlW@JX7p6!jO5y?fJzYuk!<>rxr}_;}%p8w_-Caz!rE4Q!wFa9tZZYp2BBIFL}nyflegUz@DhdHv(H?7ODXo zuoP}VJ%VkL`+MFbqMjVaVt5SIqwj3mdCv5>1bWH$Vm<7Rsy`KV;T$ZBx1g5uV$=ve zh~@BER6|}t-S15dsU`0c(K0%QTBm z@-LV<5RclZlCcYR!gnt{5| zd~AmIqb|4~b>3&FWqKLgW3_*nRdqeKAiW4%;SSXDJBKthv6g9bCLf!B+Y>sEKB-Y+(CR;6F3UhDq= z5w-MljK@=01+SonzRE7sqq?XeZ;z_iA8TS7Y7)*zHFP1W0gF+q%SDaAdK`ie<6yji zq3T4sykc%J7M0FHov;|yuw~c?AHce}7gO*%tdA96HTfM-&v*i=11qr(K8`x?P1IaD zjWw|BYmC2!zR_!@;vlR|Ity#zy{H>Jfi3ZURC(;{=FucshhPQrZ$WKLOHhySWo(M4 zZGOUTQ{E4iKYMq`^!QOS+K}-Y>KR@{U7*|^Q?V?lW^GA9bTgup7RQU9rNO=Cl0z5E0GBxu_vpgPL3~S-(dORgL|oydCNW_<9)#c?NU*6+m_`~ubBqxgl^fBARK1d12cJQpoXd` z#^QLagp;rZ22msN7`DYdsAu^*YI1h`(7c?ou`}s4){ju@zrsi6wcQSjksgl~LPXMu zXvdm`TG#iYTD}R@;#aXO9>xmz9eVK(%)*)H?@$4Xf2 z6UJZ9vIdbd*b&QPKhzD!Vj^au7w^IP_!Q~}AEJ787MozDgQk8rEJ}JZeuI8g{b7g9 z^{1m6I`0tAUqiTvjC!~qy?7QiiOPOzZa4-zk)Ds*n0BCs@Ksa~-$XU+V^o9wK;0nm zGqVvj#dy*^Q6n)9wMu4u#`tRlR+CW&BdC%12sO!$p>FU4YD4-9Q?TY?)6?EKiF5|) zg8NZ7ID@*O^SN0S38)dh4r|~*Y>OEoB5J@xn1H*mAs)hN=&(jK8LOijP#e{->rj(* z5RS&VI0`>RjYP_qW-<=N>ZE65BV2_oa2Kk4<4@JJhoriVbicw!zJ)79Yle zSmCJow3>j8Nw3G@xF6Ml8ee%lw_$H=hWl_ZUPRUJbu9XbL!KE#^z2{4?sx>%GVgIS z7kZ%@;6wFnoz35ky3q-|7t5S5=dHyWq<5jpKf{g~d(xcW1@#Dh(R7Hn8xh@LyRC2< z)$@v9^T!74h+f==s`m-D#!^geJ)&-?M=}CSJ?86sPiJI<-6CW4`NZ$-=aEn9#b&>JF|+q zVMs0OO{63a$5J=}HCz2y9B)RgiUn8%m!o>R2CLxHsCv6`qQk$Yp=N*M)23ce)QxY% zQFy!cv(v19UAWm9Gi04n&uToD!Z6muO{ht<-==@F);epp-X3@z<@vZZhMf;hbLb^~1&g8gM>BLOsPr(@g>S%$I14qji?IxD zMUBj>sF68n(`QhRDE24Qp(@yvbjJ{p5=1hw66Rq|ybCMhCe%>Ah+cdb6Y)Ii#ua`x z4eEfZHwM*!T&#?DVQE~4nygz;=f95HZ$c-CBoX-&HRRr3*e0mbkU^ipyonnRQ*1vp$?)CAGYPievSS+0PlYynjAq~g%4Vr|7Moo9&6`I z<{zC4uod-6|IR$YZs^x}s2&#k!~AL1i^-&KM2+Zec(>|dZ%n?-XBqR)Go46#GRpqR zHi><$ucCU`?l0pgY(qMLy3rG;5!!A20=3*OqE^$NsF5gs#Vpqfs5z8~T3rpXNr*^$ zMbL*ea1~a@XHk!04^G8m9w%xJ>PDYn3;Y5#hsrv}YN!SzS(~EjwMU&d4b_mD7*b2- z5YdLR$a+7PC%pwV$zHM^!}_F4#5mD8(H!*>8ioDv4%CRfgKEHOY=;-Esj=ohQ&AnB z73+ke&vFwP6UjJ)EwNpkxxqA?Kzcbg!n3G`Rx9E}zXMWG%c?0>#jZ9z8XJ<%#5K4I zmtjg#)8GQsh<#HuWQO7b8EWxwsG*51=0s<2DQgGR`p!V@fcdC7Fc;P1)u@KNfOYT< zn?8xEe-Z2AWz-0Ii<@-c5Rp-2OvlFfI%?LQMKz>S33EaXRF8U~>SdvBc)u-w67_69 zu=$^&R@L{Y5vx?v@pQwwsPocM`%7pR5zXSos1|Or1#hAz;bGMNa2_>RDwZ-Mm57?% zO;9&zgSudERJ|KeBa?xh@J_rDUq_cMx@PI<`618qWlhgsLbdpWwRAa?-v%}G6HzzJ zM%`c*YB}DCYWT~j8y>a(X{}M-iLR;+)={Vq&BT6M|Eq~;NWVl~s6+)b37cX^(v#4O z>#zmxw4OuF0dGaq&<@y)^c1U$T0MJEH$08%VA)D0za7@&{+@|MYU3TKS-uHX@mWN)QPr-ip2x?NDMvX|tDyBjGusZ2HRL7R09`#n#JK!x0DRP#GZdk6W z=|OwcB+Nt&=`!ons0$uIt?RE*ld@L4S+0GpS*RPW#8`X^HAkMq*7z!F9)!xj2~}??YBju!8o}Kdj~}5%__VcZ zb=JQ!x>t9iuiq@|ZK!9x+PV*Q!QW8zub|$FjcPd2_xw=QjeV#QanXyrtVd9*>|NA#JYG}3 zK59fp*z~Qax$`7)-H_)v5e;eiM6(P#p_WkwYGlHw5!jCU(AbBXR3D<2)j=$Qmr&=$ zCYkHBLe2V#s1dmxH3IixaeNU=YyH1U#7oB8sFt2Zt%~@%#tznT)?2L`tgl;7Sc}v% zJ#T=z@kpD_K&_tDsD?ZzxxeQ(i(Ws!DzHjJud|aKUFRuOLtaD;^~lcrdTxj+Zhg?poB`)Jh8I1TT@ z#n=JMH*`D!9Dq9i6;%EO)X+9+M9)-iJ%Adq0gcU^7>OFWn;VDBR{9tj!^rp=_10_K z#H@mWsEs3t>cJA!+}MV5@t`dq-qeiDG*knYTc1O%j`z@u7g2K{KGoPVL_|Y67}bM3 z)G~V-wPk*WYQT4>$>}sR>$)*&ws%L>pNZNrAHt5f8MU(>wdKFze$vU!%_BR9IxqAK z5w$3(g%kY?W@preKDQpj6w;?q&$N6?Gn7?Old2ACqiKP9_I+_E4o7XtkDy-HAD}w) z73#bT$QB;*#I!OQ9Z<7&AZkQ1P#eV()L#DvYJ~p4FR@K)W2H8xVLzZQd=WLdinlc* zP!)B(W~dPyi5k)QSV6PoJ|dbNTTovrFW`7Qhn;a?JL6*1NWF>b@p07b{tdMXoc3mJ z6i1~Sp%+_V4;*e?gKEg9SY5L;rh~a~E%cIZk80sqOu(7A6Ys_0*sr7M@jBFnH=>r` z3Dh$^Z__n9nXlp$)FbGM8kr%e5gCu6{zMiK(JXxn)$$)v%jyzpk8gaP`8>Y~wdKBo zdXFEo>8hQb=-+lbpmx0LP#qYGRWSp#pUg*1%5|t!vaK`gUy+Z=(B$|Tbz)o>v-j6T zt^bawXFC?v)9I*5IU6-+Hlp^8ov2Coj!j=i^}I}1v+ir6(%n!y>d>yNf3a|CWz)+h%33cP3bp>kDK8<~GH|p&gD%sNvX$rO_ zqqTK9YVtjT8tR>>6TZeojO}GcDj7AKd!b(AIW~W-^&hBbe+c{F&o~G>^^WeiA_fx7TsRL_s2Cht$E<@`HpB;)!T6Ht>p)jBFF z>u;XT*o3;^0qZGiTtAbaXzhZ!&^YTt>l3KS{61=gE}$AvvAR z)KGRs^>6@chn$KUi9GB5s155C)Oj%@O@~9Ji0D}+*o?+D-2pXw2ck}xWc8z-WuA4R zb(QrIR0Cf?U3V{PvK>M_;vZ2XTxV3YVM>e5zItgFb6e@A4ENpe_#(hh}U7lWRo6^TE1&h%kU%A zOYJDCW7VdZ5xfcYh%-V&8WFh*b;GTw4W|Ir^Y?8!Hr@27CTi&Gp&mtl)TA12os8;n z9%_f2hk7(iQRi*KHn<-(0-?W%XsBX+=EPE{5vYP{Py?KRP4NM|7rj`2s+skDQOhtJ zHOp6`CguIu5jUaUmPgQwMKVnN`k1Wm{{cigQ!oQHw9ncKZ=+g#!RA-VG$*z~J(4lV z1w415hVp4t{kJd?FJL>Y=r`#BsB{(%$IVz#>;G3G+8RqvGY&yL!&TO|twpDs6T6{? z+{I`QQ9I=k)U5sqwb9hgay(C9AL|9w9C{$zjO2Ey_y4dQ^WHv<8p?!RV`m&gI?ehL zb|PJ2hS_)qqlR`Gs%I-v4frQ&BrlzHauRkW zy%O)o4{$tA3mD(T&JL3>Xx8=Qd^2)Spl177)Vi-f%RKX;s7Epb^{7^%uD^AbUH?Cj zaRV6@XPZ5HI(kXpjM^F3Vjp}Qn{(rH*pGCbImS%9oAg#|hg-}ec^x&m4`MtXK|Q*Q zsMS$)F6&=gVf(65>)}3c2VFT189c0sU zu{Y_B)^AYzMw8I3W~=q1GVZkQM$PUk*5vtSLm7ygBV(`u&b4krHT*5qqdbk;x+~H_ zb)Y_KQuam{Gf`W7=rWPAM5^6pF5Cds^MR)?QqF=I??~0XdG%Qe#iP5>Rs?PHr4vS9F6dc$6e;FbpxuW(^1dRMa|yb zHvgnem%iK7OU39r12v?Xs4e#n)Q~@bS{1vnEndWYY`TaBaDUGxBD%l_=*1JLA&gsW zCRuaTGaP`rkRSD|A3?42-PW(LCh5PhDAu^gJkli8qw0ftr;NmOyc)a*Ti-La-?ya`8<-iUqiBKF2Et4#;)Ks~aW zYs`prvgTq%@;9O8$crH&YT4VU?|^SmZ>I|PnPr%cnyvXb7?ZeV-N!l+wIAG!dRZ;8h8`xO$@ijlKWg$EMm6Y|we(suiQ1v+_eMSYF{u3_1EV)U zeSj=MZAABBG2DgKa4%|Pjv$jVR<`*0fdA13rBUCWja;=GoGIIhoh@YEq}iDms&q{2@W6drA;(1$`DCs8k^ z)6^+Xod-$J!1jgpsrw-D-sHbZJ?(@M(m8}BoKuzZT-yNcvM-W97Ij=lep-kO9mPn5 zi6;;$5Z{f<2yKYRbMZe>$0*_z3H69S63zMh$4=_AX?m_uS9757C`luN2-b1vd1x5+gZ$tVA7n|_9RI!2TCJ7E*)sW=Hs zaBe%|-%$PpjwA0`&g&V=^Z$s*XZGZw#CH)!QfWDPj}q6>#^Bjbe&JD{i{?_^iqOZN z{}q<8=PaQvt2?@n{6YLBLL1WGae;NzdyKeG`@eRsr^z@?g(NO|?U6#>>x6fy{453Y zi8m#*q<(Aa#-fgLBhx0$g4AMI06CShm zMiPHHCi-;vH$5_oaIvPG5Kv8yyNEwe*iRTuI*Tx!db>#fOgzzD*)KlyEvf6c{QKnS zc#yP?<D zVwgVJWV}sc6d~K*d@=D##M@A|itr2Rri6urmpJ(-WxR5)9-rCR8+fO^##v0Vb<(+p zjuzzAC9kFJ(2JVBIvP>X2j9Vua1fPZ2<=I~%E`R$Jn_Vz!A1nWRy`X@@2Bi9>azuV zt`OcM=omwpj<@ZNO^W|2iF7GjrvJ_^R?~MkrFRnQQgGZ};Bi~211+6Pd?S@V!~>L9 z$A@gaWZM(nK=0Aw)SE|nJ3y!RKPKXpwHPAgwEI8e75RvUSH%Z$MZbpI$kBNV<*-m3?sb9efF5_ww{BW zu$;sDDe*z?1?AIFFZQfyo&CzPL)E>6lP=PYnsxFtE}X#_fSV;%5ES%#-^Xe zH@VVMyp8iCC#XzH9%gyRz`zD|WboHWF?Q2Eajztg5`;zaTuR>3vLOyXTBd!O?^@TeuQiNvv6ZnW&;Y3;{aQ!3KfnJFG^l* zE|f%C#~0*vMSf}V6xBsgM<(%4P4w!|3zU`S+zJFg@nf8OJM~^C-if&WUBR=5$OmMO z#1VLw)1M%&<0$ECkCQf?g|n!0D`70x$RjF4C3Ih1{X!jU#Ne4LU=-2jLgWb@+)tLMUg` zUgAB;{}D5zH8_{D=k58*x|gy9EY9zho=X(wl1Ra?D0oaYIA(A{N7C)FyFIxf>8Gft zBb&UM#2s5!gO%UIm{nUAv zycza*AU%`#F@l%)@0_Ef z2RZn~blwe}iEiGOF~LE4}`ABa`yai66to1edUq{H4)SMhR9j9x~lr=u+87j1q~ z>I@@3p1jaIBu)@?>?Eur^B;s?2|6C2Vp~Fa(tYqUdChSe=})i->2AcU+iQG5`di{X zYq&PY93l*)yf$G!;RnjbbKWrGg~w#-thMJhAg&`q9Ub3UQ*HS&(yREB zc(m|we$KKLh7kXVljmX)DmNhiM|;v&woa$$S*!x`+g>wIPLlrsd0tyj)t=*8Pm;c! z@Ge^w#DqHzC^4byq2lWzZbZ6=ngvd-Lax{dw0l=ai@MYpDMk;X~?{!EY$fwAaYNx5*C>{v_WaoMT~lX4?y&cHEqS zD=VbsqeR-+wD+5QD^aj&1GJNUYyuR!-f0j2bJw4AC2zYbzyg9i+|5X2!G~L0QJ3|D#X+dvtdw0&zTJG~htGGW8 zJys;8TXLYG8+Uy@_mg3_beWu$J7qczoROD1)t}`Hc#;F&f6r^;osq^}lhdy)%n$hT z0`9=;?;qt4=+@peZ?;bz_vTLZrsd4>X5{7O&q&oNS1Zg)%krmtr{rek<|STJkmU~q zebGS)=IT@iG1WbK{ZCEGSr< z^ZC3Za;FAor{($FqrW8<3FhWzrMe%DyxIL^Wd8qAxlgpRw|_8TI}`8*GPw{xbMu1a z1prW;BXiOvdl{tdnB z6b|gvyxeT>v|PXGb0*^x9W3{m8@?`@?hE)ca@>Vu*SR%ste&b12l6KersVl2`@D?L z$l3lN_wi26^ZRnrX-Za}FD-qJHl^zi4p zukWhuj+t0LA*hz>xpQ+m5KWqf&ze}LRu9djYl@>Ko@lNwJ+gXYC#PRpjwXuQ>(yjS z_4G{3Ieyz(o0T>zEtr<)9W{KA_xNr1CkH5@Ms&toqEm-O5&3x1^0*;6z9~F|TGI9PGLR`o#mgxlqN5jHYFI91t@1Rd7}%3M1EE}6WHC58DBw{OPj(u0bMrt)os!OgI=n(58)Pnn*Rmd!E?xCecyMtWM%?iglj*;Z)a-Ddu3 zZr(J13=im&X%ii{T9&trefSKR7I?L+X>Rwdn(myeGBL^NZl|myqV-1lG$Er~j8-?R z#+#MPrk0Y;bh~Eu^omYqmaK0o(=&&G^#;;rG2uM6M0;G}igwp!^(_{iSq#AkS^Zl^ zx0UFcF>~#|O+8Pq+-Nm3ligC;bIbS2pOK|)ke!$vaf;8qGrM7(bbrv>JvzZWy%o2+ zh&SL12HB1yPi24P6gBlDxw(~`nnSzy@lIt|O%8ba{2jLo^|l%N#-+{5&GQH85&K7_W5>NPvrf6J+zfw?H#+z96x_7S3GVp31(kBO2(*>5iv-iMvh*tZJg-LK#&kY! zh+8jEp_n$@WY$ERz!#MUU)|zo@lHyc%+ijO3tn*Ch56GWXZcs@l3GC>qnl4;&g`SH zrFkql0iS1(KWBO%GJ0;=7`Ih0$vr)90P}m&tq&IIu1(BMoZpDhz1DQIe%NJs-%+3; zR}0PNGjaaCaRJt~du)C?&Cwbmuj_>JOHH1m=Mt?GnI7sLTO}hu&%7M9N_a^5Iq9ih z_wj`T%0(-A12cS6c!T=V-7^c9xifB$FJUHx*PkA_{q|Z;ad!9oEcSPI{T(wKr3Kkk zGWAAJ^$f{nlb(|4P0yW@|F1dG1zF|JesOw*x+Cu#;Uu~b+&Q60^vdpcckXAQ&+-RN zyQbu(``k@;y;#A#&h?X0y)@lAcb~bsTf4D~8g#SsZAf&Ad#4soJI%zali`0AM(0@7 zMTwznPcviizb|Xc|9=<1riyOCuxS1LOXIG752=|`?TYyKdQ`e*N&TU`T zNd3iIVj{clo#K?x?Bl%L)X1eJF^=1GX#@AxrNQFEebYE2Db;Pfv>_P{YO={jzmD`C zO7-@is!unrn;zYLcP>rhP4{<&Cf+G*T+_*0Z!UEFwg=tcmSz;o4Mbmb?u2D4N{qC7 zE#H^R;@vaL8W%3ivdh~Q%gdeRPxs}yJ(nj98WH40o9&HmNcO1?%b&~*y#G>ibrk6z5v`uS9C68UbPxPz7X8?PkSSWSHw7tubp4E4a0rx&eYQQ zx2VVN$u`2LaH9Ls$~MKAz0sBY*UE{N2aovAUBw-@YODL|s_t%u)q_f9=kj3|opON} z+#IJ>S{^Gf)0Z{FGr|{*+vOVFj`iJRwyeU^0GqcveRXR2tZ28Gax{tM8jP%7z0`5P zUsJ18jyI`W(>xkHCn*wt-!`X6x^Hq?p1VKnEjNX43YI=!f6<-HJsut#Z`Z2U?6oU8 z((?Xvr%W2(J=wXulr+gAi`JfV68?U>M_*xAx1ZEVaNTV&McI9W`2qL*V^!TB9$c!) zyWpW(Zq7qpO*FGeT2SwB??ZgeZ>Sb=HiR5^-G)l;7aN+ys^I&L$&u8Jv5vcD<4BwF zS0(SrygA;qj5L1^U-el&zH3t5i4Ql8oO*Z?U#y$Q{2w34=4(3A<FcVP&w;-oao zy8dkaVyBPS=py-VU*N72>0Xk}(0-1%*F{#ieIm*3y2wQLqexZW*WX2+aC5emRoiV_ z$Fj-kx29-U@`L>DG5b~LrtbWw+hb>2_xYVQBk$}i>XiKZ zo7CODt5HpjyC>RMvjGJ>?EcXueRI$~vMad^E!UgNpWabTig{&4*%mFDHgD-|(Y#}u z=1rTok8FJ9S;u|v)dp^z*RBiCDdW^}$Gx^Ma{0Amv5{48q&V(RdsEyUdsnoGw#c95 z_pr51OY=@=PV?2+gbvTj*KgFl1HnC;z0>z>o)aW8ZO>*mZC^6s#c;)5PLf;qhZMKV z8+9Vp-W=n&llP^%XU>*)&+RMj&fQ--lDofFOytr(%Q%rG2NuS;6W*=mM&6whDf?bE zCvxdM$8p{FpR6-BD{If@8UA3dXYiaoFJ}6(`F@K2TG(`!KQGf4z7*rMij4SRPi%#O z`LoizGxluuvwQJXJSR0$<&!N=iIIC=%po)2b9Wvb;C^~=oLlz2+HR{uE#v>A?WQ-8 z^g|Ci0Ez&Fy}qgByFIqMLK1zq{^8f_vRpP27Gb ztGS;YOL4ayY34q5yq;TH~!Qu?u=8@ql4r-RL{L~D$%`sYH;~sxpe00_|6Hq z{l0BmRYUF>ra!%KDtmD-e>y)Rw|@InOt^Oyr;U5_nX-}Ir#Cv`Tgy9DOAMcrnaylT z4nz)}X{Y&6t%Q$n6`m`vvb22(|C(~+&h>PY&m}2DlFzMh+(GBh))?r|o0gWJp3e*n z?Ag3$Gfhv+n&r#N&(Cq&U+}uaE{u;XztGVM&u{6}iTv}2?lF;jep(dcuKYD2Qt9H8 zaW(jB4d3nof2!v{E*07N`-zyy>zCI!C9Y08cjaHT!u)>&)pD2rH7T4i!0FBF@&bqw)j(!ihL15Pr9all*Ua1wR&X<~iY; ziaCeEiN&4D;aiG3Rlfc z+e$i#PWVDeC!yfMQcg9ebim6Z$>cYCrhWM7(oXa6_R>y+t3P^$zbMV6|K&%Wa6xG& z`D&F0;Y+2Rq3+fzJ;VLVI7h-2$~wK>lc$@7=azMn3g(n`#>EyqTfsTt6m+lTly|}p zRdON){AlOIX%d8+dFlPd%1*wX`{EK;=R$aI6{l_S!YLB|y^2$}s(Ij^0r^?e`8!16 z1Sp8D>MV2I1#ea^5}ifi74c5j@U{+4y@L1SoeoZoVPT$ciEMC z;gSiCKRi0YNsm7I@Qws$YncD5l8*{9syiPzasAS!=erNRnovR!-tYcEII)UTEj+TO zQ@Ma2RbvY3)piEQL@S18c%ACuTa%nR;d{K!6!(EMwF=I7ol{P@Xk8w_2T9J_nDEh} zv~60l^HNNBd`r4tH^n&~em%u`GTfq}(=R+O#TijBr=c^!3IEWDN7cKL)7L2=>URoa znmE~7p!Jp6hmCnfw;Cue;4P$#Fk`{M_d-KHN_aF^|^UhqRFXN40th(ARYggQGv zIN|iJ&h_EDyE;3<`@1p;v@M5sb#+=5bnoWOa4Hl&nyXKYsht$w+MTZC_i!ea`Imh^ z{BaLwZMb+(XHhu2r}L&RR=14b%ddFB{Cu`LZrZY!TK`aAr(MCezD|eO@Vx`+-rED5 z@15|%LC!Db%_i{ojuW0W*tx{pE+PE*V5dw$%n)ae6WyhnMJIL8$M(ji;VC>XnCs^i hzzfc!O;DRaR&dXYdp0MAZyCzOe?}Ak$)V1W{|8P*i0A+S delta 20826 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 E5BEz>s{jB1 diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 5a53dd2df5..992e943b9a 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-02-28 01:41+0000\n" "Last-Translator: Antti Salminen \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Hakusyöte haulle \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgstr " lähteestä " # Onko päivitys hyvä sana? #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Vastaukset päivitykseen %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Terveisin, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." @@ -127,26 +130,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s julkinen syöte" @@ -156,34 +162,48 @@ msgstr "%s julkinen syöte" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s ja kaverit" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s päivitys" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s aikajana" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,16 +211,18 @@ msgstr "" "(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa " "sähköpostiosoitteesi.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " @@ -215,34 +237,38 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " "välilyöntejä" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " "välilyöntejä. Pakollinen." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 tai useampia merkkejä" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 tai useampia merkkejä. Pakollinen." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -252,6 +278,7 @@ msgstr "" "antaa osoitteelle %s oikeus lähettää viestejä sinulle." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -286,7 +313,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metodia ei löytynyt!" @@ -309,16 +363,23 @@ msgstr "API-metodia ei löytynyt!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metodi on työn alla!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Tietoa" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Hyväksy" @@ -329,6 +390,9 @@ msgstr "Hyväksy" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Lisää" @@ -346,27 +410,29 @@ msgstr "Lisää tai poista OpenID:t" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Osoite" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Kutsuttavien kavereiden osoitteet (yksi per rivi)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Kaikki tilaukset" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Kaikki päivitykset käyttäjältä %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Kaikki päivitykset hakuehdolla \"%s\"" @@ -376,33 +442,40 @@ msgstr "Kaikki päivitykset hakuehdolla \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Olet jo kirjautunut sisään." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Tilaat jo!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" # "anna lupa" ehkä parempi #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Valtuuta tilaus" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " "useampi käyttäjä!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -413,15 +486,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Kuva" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Kuva päivitetty." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -432,6 +509,7 @@ msgstr "" "ystävälistaasi?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -441,7 +519,7 @@ msgstr "" "lisäohjeita. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." @@ -453,6 +531,8 @@ msgstr "Aiemmin »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Tietoja" @@ -460,16 +540,18 @@ msgstr "Tietoja" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Tätä päivitystä ei voi poistaa." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kuvan URL-osoitetta '%s' ei voi avata." @@ -477,6 +559,8 @@ msgstr "Kuvan URL-osoitetta '%s' ei voi avata." #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Uutta salasanaa ei voida tallentaa." @@ -484,31 +568,34 @@ msgstr "Uutta salasanaa ei voida tallentaa." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Peruuta" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Ei voitu luoda OpenID Consumer-oliota." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Ei voida normalisoida Jabber ID -tunnusta" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Vaihda" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." @@ -518,11 +605,12 @@ msgid "Change password" msgstr "Vaihda salasana" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Vaihda salasanasi" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" @@ -532,6 +620,9 @@ msgstr "Vaihda profiiliasetuksesi" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Vahvista" @@ -544,12 +635,14 @@ msgstr "Vahvista osoite" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Vahvistus peruttu." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Vahvistuskoodi" @@ -558,7 +651,8 @@ msgstr "Vahvistuskoodi" msgid "Confirmation code not found." msgstr "Vahvistuskoodia ei löytynyt." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -592,21 +686,25 @@ msgstr "" "Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Yhdistä" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Yhdistä olemassa oleva käyttäjätunnus" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Ota yhteyttä" # on lomake #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Ei voitu luoda OpenID lomaketta: %s" @@ -614,35 +712,39 @@ msgstr "Ei voitu luoda OpenID lomaketta: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Ei voitu tilata käyttäjää: %s on jo listallasi" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Ei voitu tallentaa profiilikuvan tietoja" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Ei voitu tallentaa uutta profiilitietoa" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Ei voitu tilata." @@ -662,15 +764,17 @@ msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Ei voitu poistaa tilausta." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Ei löytynyt yhtään päivitystä." @@ -683,29 +787,38 @@ msgstr "Ei saatu request tokenia." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Ei voitu asettaa vahvistuskoodia." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Ei voitu tallentaa profiilia." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Ei voitu päivittää käyttäjätietoja." @@ -721,45 +834,51 @@ msgstr "Ei voitu päivittää käyttäjätietoja." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Ei voitu päivittää käyttäjää." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Luo" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Luo uusi käyttäjä tällä käyttäjätunnuksella." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Luo uusi käyttäjätili" # Koodista selviää, että tämä on virhetilanne jossa on yritetty luoda tuollaista. #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Yritettiin luoda uusi käyttäjätili OpenID tunnukselle, jolla on jo " "käyttäjätili." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Tämän hetken vahvistettu SMS puhelinnumero." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Tämän hetken vahvistettu sähköpostiosoite." @@ -768,23 +887,27 @@ msgid "Currently" msgstr "Tällä hetkellä" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Tietokantavirhe tallennettaessa vastausta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Poista päivitys" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" @@ -792,11 +915,13 @@ msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Sähköposti" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Sähköpostiosoite" @@ -806,39 +931,43 @@ msgid "Email Settings" msgstr "Sähköpostiasetukset" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Sähköpostiosoite on jo käytössä." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Sähköpostiosoitteen vahvistus" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Sähköpostiosoitteet" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Syötä käyttäjätunnus tai sähköpostiosoite" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Syötä koodi jonka sait puhelimeesi." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Virhe tapahtui tokenin hyväksynnässä." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Virhe tapahtui käyttäjän ja OpenID-tunnuksen yhdistämisessä." @@ -849,39 +978,46 @@ msgstr "Virhe tapahtui käyttäjän yhdistämisessä." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Virhe tapahtui profiilikuvan lisäämisessä" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Virhe tapahtui uuden profiilin lisäämisessä" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Virhe tapahtui etäprofiilin tallentamisessa" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Virhe tapahtui profiilin tallentamisessa." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Virhe tapahtui käyttäjän tallentamisessa." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." @@ -890,6 +1026,9 @@ msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Virhe tapahtui käyttäjän asettamisessa." @@ -900,6 +1039,7 @@ msgstr "Virhe tapahtui profiilin päivittämisessä" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Virhe tapahtui etäprofiilin päivittämisessä" @@ -910,36 +1050,39 @@ msgstr "Virhe vahvistuskoodin kanssa." # openid-tunnuksen liittämisessä omaan olemassaolevaan tunnukseen. #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Käytetty tunnus" # Ei tämäkään kauheasti kerro, mutta ehkä silti englanninkielisiin sivustoihin tutustumattomalle edes lievästi selkeämpi. -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "UKK" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Profiilikuvan päivittäminen epäonnistui." # Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Syöte käyttäjän %s kavereille" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Syöte käyttäjän %s saamista vastauksista" # tägille vai tagille? #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Syöte tägille %s" @@ -954,7 +1097,7 @@ msgstr "Hae päivityksien sisällöstä" msgid "Find people on this site" msgstr "Hae ihmisiä tältä sivustolta" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -967,6 +1110,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Koko nimi" @@ -975,24 +1123,34 @@ msgstr "Koko nimi" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ohjeet" # Tämä teksti tulee linkkiin, joka vie käyttäjän omalle sivulle. #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Koti" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Kotisivu" @@ -1000,22 +1158,28 @@ msgstr "Kotisivu" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Haluan lähettää päivityksiä sähköpostilla." # IM ei ole suomessa käytössä ollenkaan, pikaviestimistä puhutaan ainakin jossain... surullista kyllä ainoa suosittu termi olisi varmaan joku "mese", mutta se ei taida sentään olla yleistynyt tarkoittamaan muuta kuin MS:n tuotetta. #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Pikaviestin" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Pikaviestiosoite" @@ -1025,7 +1189,7 @@ msgid "IM Settings" msgstr "Pikaviestiasetukset" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1033,7 +1197,7 @@ msgstr "" "Jos sinulla on jo käyttäjätunnus, kirjaudu sisään käyttäjätunnuksella ja " "salasanalla yhdistääksesi OpenID-tunnuksesi siihen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1041,7 +1205,7 @@ msgstr "" "Jos haluat lisätä OpenID-tunnuksen käyttäjätunnukseesi, syötä se alla " "olevaan laatikkoon ja paina \"Lisää\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1053,25 +1217,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Saapuva sähköposti" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Saapuvan sähköpostin osoite poistettu." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Väärä vanha salasana" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Väärä käyttäjätunnus tai salasana" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1080,31 +1250,32 @@ msgstr "" "joka on rekisteröity käyttäjätunnuksellesi." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Kuvan URL-verkkosoite '%s' ei kelpaa" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Sähköpostiosoite %s ei kelpaa" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Kotisivun osoite '%s' ei kelpaa" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Lisenssin verkko-osoite '%s' ei kelpaa" # status päivitys, päivitys, tätä ei ole vielä päätetty #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Päivityksen sisältö ei kelpaa" @@ -1120,13 +1291,13 @@ msgid "Invalid notice url" msgstr "Päivityksen URL ei kelpaa" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Profiilin URL-osoite '%s' ei kelpaa." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." @@ -1144,28 +1315,35 @@ msgstr "Koko ei kelpaa." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Käyttäjätunnus tai salasana ei kelpaa." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Kutsu(t) lähetettiin" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Kutsu(t) lähetettiin seuraaville henkilöille:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Kutsu" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Kutsu uusia käyttäjiä" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1173,15 +1351,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, " -"versio %s, saatavilla lisenssillä [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1192,13 +1371,15 @@ msgstr "" "GTalkissa." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Kieli" # heh #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Kieli on liian pitkä (max 50 merkkiä)." @@ -1207,7 +1388,15 @@ msgstr "Kieli on liian pitkä (max 50 merkkiä)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Kotipaikka" @@ -1216,7 +1405,12 @@ msgstr "Kotipaikka" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." @@ -1225,18 +1419,22 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Kirjaudu sisään" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Kirjaudu sisään [OpenID](%%doc.openid%%)-tunnuksella" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1247,22 +1445,26 @@ msgstr "" "käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " "kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Kirjaudu ulos" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Pitempi nimi, mieluiten oikea nimesi" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Oletko hukannut tai unohtanut salasanasi?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " @@ -1275,16 +1477,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Käyttäjänä alkaen" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Käyttäjän %s mikroblogi" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1297,6 +1501,8 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" "Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " @@ -1305,36 +1511,42 @@ msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Uusi" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Uusi käyttäjätunnus" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Uusi päivitys" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Uusi salasana" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" "Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." @@ -1346,7 +1558,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Tunnus" @@ -1355,7 +1573,12 @@ msgstr "Tunnus" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." @@ -1364,49 +1587,60 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " "välilyöntiä." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Käyttäjätunnus ei ole sallittu." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Käyttäjätunnus tai sähköposti" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Ei" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ei Jabber ID -osoitetta" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ei valtuutuspyyntöä!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Operaattoria ei ole valittu." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Koodia ei ole syötetty." @@ -1418,11 +1652,15 @@ msgstr "Varmistuskoodia ei ole annettu." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Ei sisältöä!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Sähköpostiosoitetta ei ole." @@ -1431,7 +1669,9 @@ msgid "No id." msgstr "Id puuttuu." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Saapuvan sähköpostin osoitetta ei ole." @@ -1442,6 +1682,7 @@ msgstr "Käyttäjätunnusta ei saatu etäpalvelimelta." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Tunnusta ei ole." @@ -1449,12 +1690,14 @@ msgstr "Tunnusta ei ole." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Puhelinnumeroa ei ole." @@ -1464,7 +1707,8 @@ msgid "No profile URL returned by server." msgstr "Profiilin verkko-osoitetta ei saatu palvelimelta." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." @@ -1476,7 +1720,7 @@ msgstr "Kyselyä ei löytynyt!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ei hakutuloksia" @@ -1487,12 +1731,16 @@ msgstr "Kokoa ei ole." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." @@ -1502,13 +1750,15 @@ msgid "No such OpenID." msgstr "Annettua OpenID-tunnusta ei ole." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Dokumenttia ei ole." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Päivitystä ei ole." @@ -1546,12 +1796,22 @@ msgstr "Tilausta ei ole." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Käyttäjää ei ole." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." @@ -1565,32 +1825,38 @@ msgid "Not a recovery code." msgstr "Tuo ei ole palautuskoodi." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Tuo ei ole rekisteröitynyt käyttäjä." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Tuo ei ole kelvollinen Jabber ID." #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Tuo ei ole kelvollinen OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Tuo ei ole kelvollinen sähköpostiosoite" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -1598,6 +1864,11 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." @@ -1620,7 +1891,8 @@ msgstr "" "löytynyt)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." @@ -1631,11 +1903,13 @@ msgstr "Ei valtuutusta." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Odottamaton vastaus saatu!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Ei löytynyt" @@ -1651,11 +1925,15 @@ msgstr "Ei löytynyt" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Et ole kirjautunut sisään." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ei ole tilattu!." @@ -1673,41 +1951,46 @@ msgid "Notice feed for %s" msgstr "Päivityksien syöte käyttäjälle %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Päivitykselle ei ole profiilia" # Notice suomennos vielä hakusessa #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Päivitykset" # tagi, tägätty, tagätty, tagatty, tagitetty, #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Vanha salasana" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID-tunnuksen asetukset" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID automaattilähetys" @@ -1715,29 +1998,34 @@ msgstr "OpenID automaattilähetys" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID-sisäänkirjautuminen" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-osoite" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID tunnistautuminen peruttiin." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID tunnistautuminen epäonnistui: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID virhe: %s" @@ -1753,11 +2041,12 @@ msgid "OpenID settings" msgstr "OpenID asetukset" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Osittain ladattu palvelimelle." @@ -1767,34 +2056,46 @@ msgstr "Osittain ladattu palvelimelle." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Salasana" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Salasana ja salasanan vahvistus eivät täsmää." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Salasanan palautuspyyntö lähetetty." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Salasana tallennettu." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Salasanat eivät täsmää." @@ -1815,14 +2116,17 @@ msgstr "Etsi ihmisiä" # Tämä on otsikko käyttäjän sivun välilehdelle, jossa näkyy omat ja tilausten viestit. Omat on ehkä paremmin kuvaava, kuin henkilökohtainen. Saa kyllä muutakin ehdottaa. #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Omat" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Henkilökohtainen viesti" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" @@ -1837,7 +2141,7 @@ msgstr "" "paina \"Peruuta\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." @@ -1846,7 +2150,9 @@ msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Asetukset" @@ -1855,42 +2161,52 @@ msgstr "Asetukset" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Asetukset tallennettu." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Ensisijainen kieli" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Yksityisyys" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profiili" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profiilin URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profiiliasetukset" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Tuntematon profiili." @@ -1900,17 +2216,19 @@ msgstr "Julkinen syöte" # Suorakäännös voisi sopia. Tähän voisi jotain suomenkielistä termiä hakea tai ottaa tuollainen vähän erikoisempi suora käännös. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Julkinen aikajana" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." @@ -1922,12 +2240,14 @@ msgstr "Tuoreet tagit" # Palautuslomakkeen toimintonappi #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Palauta" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Salasanan palautus" @@ -1940,37 +2260,45 @@ msgstr "Tuntemattoman käyttäjän palautuskoodi" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Rekisteröityminen ei ole sallittu." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Rekisteröityminen onnistui" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Hylkää" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Muista minut" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Etäprofiilille ei löytynyt vastaavaa profiilia" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Etätilaus" @@ -1984,6 +2312,9 @@ msgstr "Etätilaus" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Poista" @@ -1992,7 +2323,7 @@ msgstr "Poista" msgid "Remove OpenID" msgstr "Poista OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -2001,6 +2332,7 @@ msgstr "" "palveluun. Jos haluat poistaa sen, lisää ensin uusi OpenID-tunnus." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Vastaukset" @@ -2008,29 +2340,35 @@ msgstr "Vastaukset" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" # Palauta, aseta uudelleen, uudelleenasetus, nollaus, tyhjää #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Vaihda" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Vaihda salasana" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS puhelinnumero" @@ -2039,17 +2377,18 @@ msgstr "SMS puhelinnumero" msgid "SMS Settings" msgstr "SMS-asetukset" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS vahvistus" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Sama kuin ylläoleva salasana" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." @@ -2062,12 +2401,21 @@ msgstr "Sama kuin ylläoleva salasana. Pakollinen." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Haku" @@ -2077,7 +2425,7 @@ msgid "Search Stream Feed" msgstr "Hakusyöte" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2086,7 +2434,7 @@ msgstr "" "Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit " "välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2097,33 +2445,38 @@ msgstr "" "olla 3 tai useamman merkin pituisia." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Valitse operaattori" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Lähetä" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Lähetä sähköpostilla tieto uusista tilaajista." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2132,17 +2485,20 @@ msgstr "" "tästä matkapuhelinoperaattoriltani." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " "tilannut. " #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Asetukset" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Asetukset tallennettu." @@ -2162,27 +2518,32 @@ msgid "Something weird happened." msgstr "Jotain erikoista tapahtui." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Lähdekoodi" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Tilastot" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Tallennettua OpenID-tunnusta ei löytynyt." @@ -2190,24 +2551,28 @@ msgstr "Tallennettua OpenID-tunnusta ei löytynyt." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Tilaa" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tilaajat" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Tilaus sallittu" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Tilaus hylätty" @@ -2215,28 +2580,35 @@ msgstr "Tilaus hylätty" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tagit" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Teksti" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekstihaku" @@ -2256,6 +2628,7 @@ msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." @@ -2265,63 +2638,73 @@ msgid "That file is too big." msgstr "Tämä tiedosto on liian iso." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Tämä on jo Jabber ID -tunnuksesi." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Tämä on jo sähköpostiosoitteesi." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Tämä on jo puhelinnumerosi." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Tämä ei ole Jabber ID-tunnuksesi." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Tämä ei ole sähköpostiosoitteesi." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Tämä ei ole puhelinnumerosi." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Tämä on väärä pikaviestiosoite." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Tämä on väärä vahvistukoodi." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 255 merkkiä." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." @@ -2330,12 +2713,15 @@ msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Osoite on poistettu." # Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2346,7 +2732,8 @@ msgstr "" "Tilauskoodisi on:" # Etäprofiilin tilausjuttua. -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2356,35 +2743,40 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Nämä ihmiset seuraavat käyttäjän %s päivityksiä." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Nämä ihmiset seuraavat sinun päivityksiäsi." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Näiden ihmisten päivityksiä sinä seuraat." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän " "päivityksensä:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2393,7 +2785,7 @@ msgstr "" "tapahdu, paina lähetä painiketta mennäksesi OpenID-palveluntajoajalle." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2402,13 +2794,16 @@ msgid "" msgstr "" "Tämä on ensimmäinen kerta kun olet sisäänkirjautunut %s -palveluun, joten " "OpenID-tunnuksesi pitää yhdistää johonkin tämän palvelun käyttäjätunnukseen. " -"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-" -"tunnuksen olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." +"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-tunnuksen " +"olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." @@ -2418,25 +2813,37 @@ msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Tämä metodi edellyttää POST sanoman." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Aikavyöhyke" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Aikavyöhykettä ei ole valittu." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2445,23 +2852,25 @@ msgid "" msgstr "" "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " "[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on " -"jo käyttäjätunnus jossain [yhteensopivassa " -"mikroblogauspalvelussa](%%doc.openmublog%%), syötä profiilisi URL-osoite " -"alla olevaan kenttään." +"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc." +"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" @@ -2473,15 +2882,22 @@ msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Odottamaton salasanan uudelleenasetus." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Tuntematon toiminto" @@ -2513,32 +2929,39 @@ msgstr "Peruuta tilaus" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "OMB versiota ei ole tuettu" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Kuvatiedoston formaattia ei ole tuettu." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -2546,6 +2969,8 @@ msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" # tai lähetä #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Lataa" @@ -2567,6 +2992,7 @@ msgid "Upload a new profile image" msgstr "Lataa uusi profiilikuva" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2574,7 +3000,9 @@ msgstr "" "tätä palvelua." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " @@ -2600,11 +3028,16 @@ msgstr "Käyttäjää jota seurataan ei ole olemassa." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Käyttäjätunnus" @@ -2613,30 +3046,34 @@ msgid "User not found." msgstr "Käyttäjää ei löytynyt." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Missä aikavyöhykkeessä olet normaalisti?" # Suora FB kopio. #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Mitä teet juuri nyt, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Kuvan '%s' tyyppi on väärä" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Kuvan '%s' koko on väärä" @@ -2644,7 +3081,9 @@ msgstr "Kuvan '%s' koko on väärä" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Kyllä" @@ -2667,11 +3106,12 @@ msgid "You are already logged in!" msgstr "Olet jo kirjautunut sisään!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Et ole määritellyn käyttäjän kaveri." @@ -2690,23 +3130,24 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Voit poistaa OpenID-tunnuksen painamalla \"Poista\"-nappia." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Voit lähettää ja vastaanottaa päivityksiä " -"Jabber/GTalk-[pikaviestintä](%%doc.im%%) käyttäen. Alla voit määrittää " -"osoitteesi ja asetuksesi. " +"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." +"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2717,21 +3158,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Voit käyttää paikallista tilausta!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Et lähettänyt profiilia" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2753,11 +3196,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Et voi poistaa toisen käyttäjän päivitystä." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2765,6 +3210,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2772,21 +3218,22 @@ msgstr "" "Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy " "kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URL-osoitteesi" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2795,47 +3242,57 @@ msgstr "" "[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " "yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "noin päivä sitten" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "noin vuosi sitten" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "noin tunti sitten" @@ -2857,12 +3314,14 @@ msgid "reply" msgstr "vastaus" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "sama salasana kuin yllä" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tiedoston tyyppi ei ole tuettu" @@ -2883,6 +3342,26 @@ msgstr "« Myöhemmin" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " @@ -2893,6 +3372,7 @@ msgid "This notice is not a favorite!" msgstr "Tämä päivitys ei ole suosikki!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." @@ -2900,22 +3380,28 @@ msgstr "Ei voitu poistaa suosikkia." msgid "Favor" msgstr "Lisää suosikiksi" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Tämä päivitys on jo suosikki!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." @@ -2925,11 +3411,13 @@ msgstr "Poista suosikeista" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Käyttäjän %s suosikkipäivityksien syöte" @@ -2971,33 +3459,44 @@ msgid "Login with your username and password. " msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Tuota käyttäjää ei ole." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Uusi viesti" @@ -3057,6 +3556,11 @@ msgstr "Voit päivittää täällä henkilökohtaista profiiliasi " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Käyttäjälle ei löydy profiilia" @@ -3085,6 +3589,8 @@ msgid "New password successfully saved. " msgstr "Uuden salasanan tallennus onnistui. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." @@ -3107,6 +3613,7 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Käyttäjän %s suosikkien syöte" @@ -3114,6 +3621,8 @@ msgstr "Käyttäjän %s suosikkien syöte" # suosikkipäivitystä? #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Ei saatu haettua suosikkipäivityksiä." @@ -3121,7 +3630,7 @@ msgstr "Ei saatu haettua suosikkipäivityksiä." msgid "No such message." msgstr "Tuota viestiä ei ole." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." @@ -3146,54 +3655,72 @@ msgid "Mobile carrier for your phone. " msgstr "Matkapuhelinoperaattorisi" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Suorat viestit käyttäjälle %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Kaikki suorat viestit käyttäjälle %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Suorat viestit, jotka sinä olet lähettänyt" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Kaikki suorat viestit käytäjältä %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Viestissä ei ole tekstiä!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Vastaanottajaa ei löytynyt." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä " -"kaveri." +"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Käyttäjän %s suosikit" # ensimmäinen on sivuston/palvelun nimi sorsasta päätellen. #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" @@ -3216,14 +3743,17 @@ msgstr "" "myös Twitteriin, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter-asetukset" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter käyttäjätili" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Tämänhetkinen vahvistettu Twitter käyttäjätilisi." @@ -3232,6 +3762,7 @@ msgid "Twitter Username" msgstr "Twitter-käyttäjätunnus" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Ei välilyöntejä, kiitos." @@ -3240,18 +3771,22 @@ msgid "Twitter Password" msgstr "Twitter-salasana" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Lähetä päivitykseni automaattisesti Twitteriin." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Lähetä paikalliset \"@\"-vastaukset Twitteriin." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Tilaa kavereitteni Twitter päivitykset täällä." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3260,6 +3795,7 @@ msgstr "" "alaviiva (_). 15 merkkiä maksimissaan." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Twitter-tunnustasi ei voitu vahvistaa!" @@ -3270,33 +3806,43 @@ msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Twitter-asetuksia ei voitu tallentaa!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter-asetukset tallennettu." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Tämä ei ole sinun Twitter käyttäjätilisi." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Twitter käyttäjää ei onnistuttu poistamaan." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter käyttäjätili poistettu." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Twitter-asetuksia ei voitu tallentaa." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter-asetukset tallennettu." @@ -3315,18 +3861,19 @@ msgid "The subscription has been rejected, but no " msgstr "Tilaus on hylätty, mutta " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Komennon tulos" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Komento suoritettu" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Komento epäonnistui" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." @@ -3336,89 +3883,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Tilaukset: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Käyttäjällä ei ole viimeistä päivitystä" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Koko nimi: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Tietoa: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Suora viesti käyttäjälle %s lähetetty" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Käyttäjän %s päivitykset tilattu" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Käyttäjän %s päivitysten tilaus lopetettu" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Ilmoitukset pois päältä." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Ilmoitukset päällä." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." @@ -3426,11 +3995,11 @@ msgstr "Ilmoituksia ei voi pistää päälle." msgid "Commands:\n" msgstr "Komennot:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Viestin tallennus ei onnistunut." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." @@ -3447,7 +4016,7 @@ msgstr "" "Sinulla on uusi lähetysosoite palvelussa %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Uusi yksityisviesti käyttäjältä %s" @@ -3461,7 +4030,7 @@ msgstr "" "%1$s (%2$s) lähetti sinulle yksityisviestin:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." @@ -3470,31 +4039,39 @@ msgid "This form should automatically submit itself. " msgstr "Tämän lomakkeen pitäisi automaattisesti lähettää tiedot. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Suosikit" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Saapuneet" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Sinulle saapuneet viestit" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Lähetetyt" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Lähettämäsi viestit" @@ -3507,14 +4084,19 @@ msgid "Twitter integration options" msgstr "Twitter yhdistämisen asetukset" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Vastaanottaja" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s ja kaverit, sivu %d" @@ -3524,21 +4106,31 @@ msgid "You can upload your personal avatar." msgstr "Voit ladata oman profiilikuvasi." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Profiilikuva-asetukset" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Alkuperäinen" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Rajaa" @@ -3555,34 +4147,43 @@ msgid "There was a problem with your session token. " msgstr "Istuntoavaimesi kanssa oli ongelma." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Tiedoston data hävisi." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Tiedosto hävisi." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tunnistamaton tiedoston tyyppi" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Profiilia ei ole määritelty." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Ei profiilia tuolle ID:lle." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Estä käyttäjä" @@ -3590,11 +4191,11 @@ msgstr "Estä käyttäjä" msgid "Are you sure you want to block this user? " msgstr "Oletko varma että haluat estää tämän käyttäjän?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Käyttäjän estotiedon tallennus epäonnistui." @@ -3611,38 +4212,56 @@ msgstr "Olet poistamassa pysyvästi tämän päivityksen. " msgid "Add to favorites" msgstr "Lisää suosikkeihin" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Muokkaa ryhmää %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Toimiakseen postilaatikkojen pitää olla käytössä ryhmille" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Tunnusta ei ole." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Tuota ryhmää ei ole." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." @@ -3651,14 +4270,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Tunnuksessa voi olla ainoastaan pieniä kirjaimia " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Asetukset tallennettu." @@ -3675,7 +4295,8 @@ msgstr "Tee uusi sähköpostiosoite päivityksien lähettämiseen; " msgid "Send me email when someone " msgstr "Lähetä sähköpostia kun joku " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." @@ -3687,7 +4308,7 @@ msgstr "Sähköpostiosoite on jo käytössä " msgid "A confirmation code was sent to the email address you added. " msgstr "Vahvistuskoodi lähetettiin lisäämääsi sähköpostiosoitteeseen. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Palvelinvirhe - käyttäjän tietoja ei saatu!" @@ -3701,51 +4322,66 @@ msgstr "Jos haluat %s-sovelluksen automaattisesti päivittävän " msgid "Allow %s to update my Facebook status" msgstr "Salli palvelun %s päivittää Facebook-tilani" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Ohita" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Päivityksellä ei ole sisältöä!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Sivutus" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Myöhemmin" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Aiemmin" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Kiitos, kun kutsuit kavereitasi käyttämään palvelua %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Kutsu lähetettiin seuraaville henkilöille:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Sinut on kutsuttu palveluun %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Kutsu kavereitasi käyttämään %s palvelua" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Kaverisi jotka käyttävät jo %s palvelua:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Lähetä kutsut" @@ -3788,12 +4424,14 @@ msgstr "Jos haluat että %s päivittää automaattisesti " msgid "Sync preferences" msgstr "Synkronointiasetukset" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Poista suosikeista" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Suosituimmat päivitykset" @@ -3807,7 +4445,8 @@ msgid "The most popular notices on the site right now." msgstr "Suosituimmat päivitykset sivustolla juuri nyt." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Esittelyssä olevat käyttäjät" @@ -3822,15 +4461,17 @@ msgstr "Esittelyssä olevat käyttäjät, sivu %d" msgid "A selection of some of the great users on %s" msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "ID-tunnusta ei ole" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Ryhmän logo" @@ -3838,11 +4479,13 @@ msgstr "Ryhmän logo" msgid "You can upload a logo image for your group." msgstr "Voit ladata ryhmälle logon." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo päivitetty." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Logon päivittäminen epäonnistui." @@ -3861,7 +4504,8 @@ msgid "A list of the users in this group." msgstr "Lista ryhmän käyttäjistä." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Ryhmät" @@ -3876,6 +4520,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%%-ryhmissä voit löytää ja keskustella " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Luo uusi ryhmä" @@ -3886,7 +4531,7 @@ msgid "" msgstr "" "Hae %%site.name%% ryhmiä niiden nimen, paikan tai kuvauksen perusteella. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Ryhmähaku" @@ -3908,20 +4553,20 @@ msgstr "Lähetä minulle vastaukset Jabberin/GTalkin kautta " msgid "A confirmation code was sent " msgstr "Varmistuskoodi lähetettiin " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Sinä kuulut jo tähän ryhmään " -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s liittyi ryhmään %s" @@ -3931,15 +4576,18 @@ msgid "Inboxes must be enabled for groups to work." msgstr "" "Postilaatikkojen täytyy olla otettu käyttöön, jotta ryhmäominaisuus toimii." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Tuota ryhmää ei ole." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." @@ -3947,21 +4595,25 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "You may not leave a group while you are its administrator." msgstr "Et voi erota ryhmästä, kun olet sen ylläpitäjä." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Ei löydetty käyttäjän jäsenyystietoja." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s erosi ryhmästä %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Kirjaudu sisään" @@ -3973,15 +4625,17 @@ msgstr "Ei nykyistä tilatietoa" msgid "New group" msgstr "Uusi ryhmä" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Käytä tätä lomaketta luodaksesi ryhmän." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." @@ -3993,11 +4647,14 @@ msgstr "Liikaa merkkejä. " msgid "Don't send a message to yourself; " msgstr "Älä lähetä viestiä itsellesi; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Päivitys lähetetty" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax-virhe" @@ -4016,7 +4673,7 @@ msgstr "Tönäisy lähetetty" msgid "Nudge sent!" msgstr "Tönäisy lähetetty!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID sisäänkirjautuminen" @@ -4040,11 +4697,13 @@ msgstr "URL-osoitteen automaattinen lyhennys" msgid "Service" msgstr "Palvelu" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Käytettävä automaattinen lyhennyspalvelu." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." @@ -4052,16 +4711,17 @@ msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." msgid "Change your password." msgstr "Vaihda salasanasi." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Salasanan vaihto" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ei sallittu henkilötagi: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" @@ -4071,11 +4731,12 @@ msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Näillä käyttäjillä on henkilötagi \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profiilitieto" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4087,20 +4748,25 @@ msgid "Automatically subscribe to whoever " msgstr "Tilaa automaattisesti kaikki, jotka " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Virheellinen tagi: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Tageja ei voitu tallentaa." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Julkinen aikajana, sivu %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Julkista päivitysvirtaa ei saatu." @@ -4123,11 +4789,13 @@ msgstr "Julkinen tagipilvi" msgid "These are most popular recent tags on %s " msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tagipilvi" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." @@ -4175,10 +4843,10 @@ msgstr "(Sinun pitäisi saada viesti sähköpostilla " #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata " -"päivitykset." +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Vastaukset käyttäjälle %s, sivu %d" @@ -4188,52 +4856,73 @@ msgstr "Vastaukset käyttäjälle %s, sivu %d" msgid "%s favorite notices, page %d" msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Ryhmä %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Ryhmä %s, sivu %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Ryhmän profiili" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" # Missähän yhteydessä tämä oikein on. pitää tarkistaa vielä #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Huomaa" # Pitää tarkistaa -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Päivityssyöte ryhmälle %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Jäsenet" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Kaikki jäsenet" @@ -4243,14 +4932,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on " -"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Vain lähettäjä ja vastaanottaja " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, sivu %d" @@ -4260,30 +4949,37 @@ msgid "'s profile" msgstr "nimisen käyttäjän profiili" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Käyttäjän profiili" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Kuva" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Käyttäjän toiminnot" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Lähetä suora viesti tälle käyttäjälle" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Viesti" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Kaikki tilaajat" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Kaikki ryhmät" @@ -4308,7 +5004,7 @@ msgstr "Lähetä minulle päivitykset SMS:n välityksellä; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Vahvistuskoodi on lähetetty antamaasi puhelinnumeroon. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Matkapuhelinoperaattori" @@ -4366,17 +5062,18 @@ msgstr "Tässä ovat ihmiset, joiden päivityksiä " msgid "These are the people whose " msgstr "Tässä ovat ihmiset, joiden " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" # tagi, tägätty, tagätty, tagatty, tagitetty, -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Päivitykset joissa on tagi %s, sivu %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Viestit joissa on tagi %s, uusimmat ensin" @@ -4398,7 +5095,7 @@ msgstr "Tagi %s" msgid "Tag user" msgstr "Tagaa käyttäjä" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4410,18 +5107,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " "päivityksiäsi." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Tagien tallennus epäonnistui." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " @@ -4431,20 +5128,23 @@ msgstr "" msgid "No such tag." msgstr "Tuota tagia ei ole." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogi merkitty tageillä %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Käyttäjän esto epäonnistui." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Käyttäjän eston poisto epäonnistui." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Ei löytynyt." @@ -4452,15 +5152,16 @@ msgstr "Ei löytynyt." msgid "Add your Twitter account to automatically send " msgstr "Lisää Twitter käyttäjätilisi lähettääksesi automaattisesti " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter käyttäjätunnus" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter salasana" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter kaverit" @@ -4473,145 +5174,154 @@ msgstr "Käyttäjätunnuksessa voi olla ainoastaan numeroita, " msgid "Unable to retrieve account information " msgstr "Käyttäjätietoa ei saatu " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Tapahtui virhe, kun estoa poistettiin." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ei profiili id:tä kyselyssä." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Ei profiilia tuolla id:llä." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Käyttäjän %s ryhmät" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Käyttäjän %s ryhmät, sivu %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "päivityksien lähettämista muutaman minuutin päästä." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Lataa kuva" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Muut" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Muita asetuksia" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Käyttäjätili" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Kirjaudu sisään OpenID-tunnuksella" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Kaikki " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "lisenssi." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Estä tämä käyttäjä" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Estä" @@ -4624,11 +5334,14 @@ msgstr "Poista tämä päivitys suosikeista" msgid "To use the %s Facebook Application you need to login " msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " uusi käyttäjätili." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Julkaistu" @@ -4649,55 +5362,61 @@ msgstr "Suodata tagien perusteella" msgid "All" msgstr "Kaikki" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tagi" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Valitse tagi lyhentääksesi listaa" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Mene" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" +"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" +"\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Ryhmä" # Hallinnointi, ylläpitäjä -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Ylläpito" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Muokkaa %s ryhmän ominaisuuksia" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " @@ -4727,11 +5446,11 @@ msgstr "Liity" msgid "Leave" msgstr "Eroa" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Luo uusi käyttäjätili" @@ -4753,17 +5472,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s seuraa nyt käyttäjää" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Kotipaikka: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Kotisivu: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4772,7 +5491,7 @@ msgstr "" "Tietoja: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s tönäisi sinua" @@ -4788,39 +5507,47 @@ msgstr "%1$s (%2$s) miettii mitä hommailet " msgid "%1$s just added your notice from %2$s" msgstr "%1$s lisäsi juuri päivityksesi ajalta %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Lähettäjä" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Lähetä suora viesti" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Lähetä päivitys" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Sallitut merkit" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "vastaus viestiin" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Poista tämä päivitys" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Poista" @@ -4841,27 +5568,29 @@ msgstr "Lähetä tönäisy tälle käyttäjälle" msgid "Tags in %s's notices" msgstr "Tagit käyttäjän %s päivityksissä" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(tyhjä)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Julkinen" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Käyttäjäryhmät" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Viimeaikaiset tagit" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Esittelyssä" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Suosituimmat" @@ -4878,31 +5607,33 @@ msgstr "Etsi ryhmiä tästä palvelusta" msgid "Untitled section" msgstr "Nimetön osa" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Ihmiset joiden tilaaja %s on" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Ryhmät, joiden jäsen %s on" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Käyttäjä on asettanut eston sinulle." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" @@ -4915,13 +5646,2089 @@ msgid "Top posters" msgstr "Eniten päivityksiä" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Poista esto" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Syöte käyttäjän %s kavereille" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Syöte käyttäjän %s kavereille" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Syöte käyttäjän %s kavereille" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s ja kaverit" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Voit ladata oman profiilikuvasi." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Kuva päivitetty." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " +"voi enää perua." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " +"uudelleen." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logon." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Käyttäjän %s mikroblogi" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " +"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " +"olla 3 tai useamman merkin pituisia." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Tapahtui virhe suoran viestin lähetyksessä." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hakusyöte haulle \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " +"asetuksiesi muuttamista." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Julkinen syöte" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Julkinen syöte" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Julkinen syöte" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " +"puhelinnumero." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Luo" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Ryhmän profiili" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "nimisen käyttäjän profiili" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Käyttäjän %s lähetetyt viestit" + +# Avatar ei ole laajalti käytössä minun tietääkseni missään suomenkielisessä sivustossa tai ohjelmistossa, "kuva" tai silloin kuin täsmennystä tarvitaan "profiilikuva" tai "käyttäjäkuva" on selkeämpi. +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Kuva" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profiiliasetukset" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " +"vahvistuskoodisi ja miten sitä käytetään. " + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Tuota käyttäjää ei ole." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " +"myös Twitteriin, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Hae ihmisiä tai tekstiä" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " +"päivityksien lähettämista muutaman minuutin päästä." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Tönäise" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Terveisin,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Haku" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Dokumenttia ei ole." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lista ryhmän käyttäjistä." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista ryhmän käyttäjistä." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Käyttäjän profiili" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ja kaverit, sivu %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista ryhmän käyttäjistä." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Käyttäjän eston poisto epäonnistui." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Vahvistuskoodi" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Tätä päivitystä ei voi poistaa." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Virheellinen tagi: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Ei voitu lisätä suosikiksi." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Uusi päivitys" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Uusi päivitys" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Tuo ei ole kelvollinen tunnus." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Profiilia ei ole määritelty." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Estä käyttäjä" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Ryhmät" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Ei voitu päivittää käyttäjää." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Twitter-asetuksia ei voitu tallentaa!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkronointiasetukset tallennettiin." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" + +# Hallinnointi, ylläpitäjä +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Ylläpito" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ei hakutuloksia" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Viesti" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Ei voitu tallentaa profiilia." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " +"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profiiliasetukset" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" +"blogging)palvelu " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " +"jonka olet tallettanut käyttäjätunnuksellesi." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Salasanan palautuspyyntö lähetetty." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Virhe vahvistuskoodin kanssa." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Tilaa tämä käyttäjä" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +# Hallinnointi, ylläpitäjä +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Ylläpito" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." + +# tagi, tägätty, tagätty, tagatty, tagitetty, +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Päivitykset joilla on tagi %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " +"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s seuraa nyt käyttäjää" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Tämä päivitys on jo suosikki!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tämä päivitys ei ole suosikki!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Julkista päivitysvirtaa ei saatu." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Vastaanottajaa ei ole määritelty." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Ei löytynyt yhtään päivitystä." + +# Onko päivitys hyvä sana? +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Vastaukset päivitykseen %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "lisenssi." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Käyttäjän %s tilaukset" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profiiliasetukset" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Ongelma päivityksen tallentamisessa." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Käyttäjän profiili" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profiili" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +# tai lähetä +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Lataa" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Vaihda salasanasi" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Yhdistä" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Haku" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Kirjaudu sisään" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Estä" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Estä käyttäjä" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Ei sisältöä!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Käyttäjä" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Haku" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Kotisivun verkko-osoite ei ole toimiva." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tuota tagia ei ole." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Suorat viestit käyttäjälle %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sinä kuulut jo tähän ryhmään " + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Käyttäjän %s ryhmät" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ryhmät, joiden jäsen %s on" + +# Pitää tarkistaa +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Ryhmän toiminnot" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Kuvatiedoston formaattia ei ole tuettu." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Kuva" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Käyttäjää jota seurataan ei ole olemassa." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ei valtuutusta." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Tuntematon OMB-protokollan versio." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Päivitystä ei ole." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Tiedosto hävisi." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Tämä sivu ei ole saatavilla " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " +"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " +"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Kaikki päivitykset hakuehdolla \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kuvaile itseäsi ja" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" +"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " +"löytynyt)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Ei saatu request tokenia." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Ryhmä %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Päivitys lähetetty" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tämä sivu ei ole saatavilla " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." + +# Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " +"Tilauskoodisi on:" + +# Etäprofiilin tilausjuttua. +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kuvan URL-osoitetta '%s' ei voi avata." + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kuvan '%s' tyyppi on väärä" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Ei voitu uudelleenohjata palvelimelle: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet-ohjelmiston lisenssi" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tönäisy lähetetty" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Vastaa tähän päivitykseen" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Ongelma päivityksen tallentamisessa." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Varmistuskoodia ei ole annettu." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Kirjaudu sisään palveluun" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Valitse operaattori" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s lisäsi päivityksesi suosikkeihinsa" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " lähteestä " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Ei voitu poistaa suosikkia." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Poista päivitys" diff --git a/locale/fr/LC_MESSAGES/statusnet.mo b/locale/fr/LC_MESSAGES/statusnet.mo index 1d3509af158616cfa72df4cba4178f61db04bf42..06a6adf0a0f3c0d8cc21a92ca82344f218fc0120 100644 GIT binary patch delta 29228 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 c|9ZT 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\n" "Language-Team: LANGUAGE \n" @@ -28,52 +28,51 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 1.1.0\n" -#: ../actions/noticesearchrss.php:64 -#: actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Flux de recherche pour « %s »" # à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. -#: ../actions/finishopenidlogin.php:82 -#: ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 -#: actions/register.php:205 -#: actions/finishopenidlogin.php:110 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " -#: ../actions/showstream.php:400 -#: ../lib/stream.php:109 -#: actions/showstream.php:418 -#: lib/mailbox.php:164 -#: lib/stream.php:76 +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr "de" -#: ../actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Réponses à %2$s" -#: ../actions/invite.php:168 -#: actions/invite.php:176 -#: actions/invite.php:211 +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s vous invite à vous inscrire sur %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" "\n" -"You can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" "\n" "%1$s said:\n" "\n" @@ -83,11 +82,13 @@ msgid "" "\n" "%5$s\n" "\n" -"If you'd like to try the service, click on the link below to accept the invitation.\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" msgstr "" @@ -120,10 +121,8 @@ msgstr "" "\n" "Cordialement, %2$s\n" -#: ../lib/mail.php:124 -#: lib/mail.php:124 -#: lib/mail.php:126 -#: lib/mail.php:241 +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos statuts dans %2$s." @@ -145,815 +144,758 @@ msgstr "" "Cordialement,\n" "%4$s.\n" -#: ../actions/twitapistatuses.php:482 -#: actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: ../actions/shownotice.php:45 -#: actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Statut de %1$s sur %2$s" -#: ../actions/invite.php:84 -#: ../actions/invite.php:92 -#: actions/invite.php:91 -#: actions/invite.php:99 -#: actions/invite.php:123 -#: actions/invite.php:131 +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: ../actions/publicrss.php:62 -#: actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: ../actions/publicrss.php:62 actions/publicrss.php:48 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Flux public de %s" -#: ../actions/all.php:47 -#: ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 -#: ../lib/stream.php:51 -#: actions/all.php:47 -#: actions/allrss.php:60 -#: actions/twitapistatuses.php:155 -#: lib/personal.php:51 -#: actions/all.php:65 -#: actions/allrss.php:103 -#: actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 -#: lib/personalgroupnav.php:99 +#: ../actions/all.php:47 ../actions/allrss.php:60 +#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 +#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 +#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 +#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s et ses amis" -#: ../actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: ../lib/mail.php:206 -#: lib/mail.php:212 -#: lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Statut de %s" -#: ../actions/twitapistatuses.php:338 -#: actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Activité de %s" -#: ../actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s statuts " -#: ../actions/register.php:213 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Vous recevrez bientôt un courriel contenant les instructions pour confirmer votre adresse.)" +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " +"votre adresse.)" -#: ../lib/util.php:257 -#: lib/util.php:273 -#: lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** est un service de microblogging qui vous est proposé par [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** est un service de microblogging qui vous est proposé par " +"[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 -#: lib/util.php:275 -#: lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: ../lib/util.php:274 -#: lib/util.php:290 +#: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." +msgstr "" +"Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." -#: ../actions/finishopenidlogin.php:73 -#: ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 -#: actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 -#: actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 +#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 +#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" -#: ../actions/register.php:152 -#: actions/register.php:166 +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." -#: ../actions/password.php:42 -#: actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: ../actions/password.php:42 actions/profilesettings.php:181 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 caractères ou plus" -#: ../actions/recoverpassword.php:180 -#: actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 caractères ou plus, et ne l'oubliez pas !" -#: ../actions/register.php:154 -#: actions/register.php:168 -#: actions/register.php:373 +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 caractères ou plus. Requis." -#: ../actions/imsettings.php:197 -#: actions/imsettings.php:205 +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Un code de confirmation a été envoyé à votre adresse de messagerie instantanée. Vous devez approuver %s pour recevoir des messages." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un code de confirmation a été envoyé à votre adresse de messagerie " +"instantanée. Vous devez approuver %s pour recevoir des messages." -#: ../actions/emailsettings.php:213 -#: actions/emailsettings.php:231 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." msgstr "" "Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " "votre boîte de réception pour récupérer le code et les instructions." -#: ../actions/smssettings.php:216 -#: actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." msgstr "" "Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les " -"instructions." +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." -#: ../actions/twitapiaccount.php:49 -#: ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 -#: ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 -#: ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 -#: actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 -#: actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 -#: actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 -#: actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 -#: actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 -#: actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 -#: actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 -#: actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 -#: actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 -#: actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 -#: actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 -#: actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 -#: actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 -#: actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Méthode API non trouvée !" -#: ../actions/twitapiaccount.php:57 -#: ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 -#: ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 -#: ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 #: ../actions/twitapidirect_messages.php:49 #: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 -#: ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 -#: ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 -#: ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 -#: ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 -#: actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 -#: actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 -#: actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 -#: actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 -#: actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 -#: actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 -#: actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 -#: actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 -#: actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 -#: actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Méthode API en construction." -#: ../lib/util.php:324 -#: lib/util.php:340 -#: lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "À propos" -#: ../actions/userauthorization.php:119 -#: actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accepter" -#: ../actions/emailsettings.php:62 -#: ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 -#: ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 -#: actions/imsettings.php:64 -#: actions/openidsettings.php:58 -#: actions/smssettings.php:71 -#: actions/twittersettings.php:85 -#: actions/emailsettings.php:120 -#: actions/imsettings.php:127 -#: actions/openidsettings.php:111 -#: actions/smssettings.php:133 -#: actions/twittersettings.php:163 +#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 +#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 +#: actions/emailsettings.php:63 actions/imsettings.php:64 +#: actions/openidsettings.php:58 actions/smssettings.php:71 +#: actions/twittersettings.php:85 actions/emailsettings.php:120 +#: actions/imsettings.php:127 actions/openidsettings.php:111 +#: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Ajouter" -#: ../actions/openidsettings.php:43 -#: actions/openidsettings.php:44 +#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" msgstr "Ajouter un identifiant OpenID" -#: ../lib/settingsaction.php:97 -#: lib/settingsaction.php:91 +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" msgstr "Ajouter ou supprimer des identifiants OpenIDs" -#: ../actions/emailsettings.php:38 -#: ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 -#: actions/emailsettings.php:39 -#: actions/imsettings.php:40 -#: actions/smssettings.php:39 -#: actions/emailsettings.php:94 -#: actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 +#: ../actions/smssettings.php:39 actions/emailsettings.php:39 +#: actions/imsettings.php:40 actions/smssettings.php:39 +#: actions/emailsettings.php:94 actions/imsettings.php:94 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" -#: ../actions/invite.php:131 -#: actions/invite.php:139 -#: actions/invite.php:176 +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresses d'amis à inviter (un par ligne)" -#: ../actions/showstream.php:273 -#: actions/showstream.php:288 -#: actions/showstream.php:422 +#: ../actions/showstream.php:273 actions/showstream.php:288 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tous les abonnements" -#: ../actions/publicrss.php:64 -#: actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: ../actions/publicrss.php:64 actions/publicrss.php:50 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tous les statuts de %s" -#: ../actions/noticesearchrss.php:66 -#: actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Statuts correspondant au(x) terme(s) \"%s\"" -#: ../actions/finishopenidlogin.php:29 -#: ../actions/login.php:31 -#: ../actions/openidlogin.php:29 -#: ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 -#: actions/login.php:31 -#: actions/openidlogin.php:29 -#: actions/register.php:30 -#: actions/finishopenidlogin.php:34 -#: actions/login.php:77 -#: actions/openidlogin.php:30 -#: actions/register.php:92 +#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 +#: ../actions/openidlogin.php:29 ../actions/register.php:30 +#: actions/finishopenidlogin.php:29 actions/login.php:31 +#: actions/openidlogin.php:29 actions/register.php:30 +#: actions/finishopenidlogin.php:34 actions/login.php:77 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Déjà connecté." -#: ../lib/subs.php:42 -#: lib/subs.php:42 -#: lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Déjà abonné !" -#: ../actions/deletenotice.php:54 -#: actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Êtes-vous sûr(e) de vouloir supprimer ce statut ?" -#: ../actions/userauthorization.php:77 -#: actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser l'abonnement" -#: ../actions/login.php:104 -#: ../actions/register.php:178 -#: actions/register.php:192 +#: ../actions/login.php:104 ../actions/register.php:178 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Ouvrir automatiquement ma session à l'avenir (déconseillé pour les ordinateurs publics ou partagés)" +msgstr "" +"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " +"ordinateurs publics ou partagés)" -#: ../actions/profilesettings.php:65 -#: actions/profilesettings.php:98 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour les utilisateurs non-humains)" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " +"les utilisateurs non-humains)" -#: ../actions/avatar.php:32 -#: ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 -#: actions/avatarsettings.php:65 -#: actions/showgroup.php:209 -#: lib/accountsettingsaction.php:107 +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" -#: ../actions/avatar.php:113 -#: actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar mis à jour." -#: ../actions/imsettings.php:55 -#: actions/imsettings.php:56 +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à votre liste de contacts ?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " +"votre liste de contacts ?)" -#: ../actions/emailsettings.php:54 -#: actions/emailsettings.php:55 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions." +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions." -#: ../actions/smssettings.php:58 -#: actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Numéro de téléphone en attente de confirmation." -#: ../lib/util.php:1318 -#: lib/util.php:1452 +#: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "Avant »" -#: ../actions/profilesettings.php:49 -#: ../actions/register.php:170 -#: actions/profilesettings.php:82 -#: actions/register.php:184 -#: actions/profilesettings.php:112 -#: actions/register.php:402 +#: ../actions/profilesettings.php:49 ../actions/register.php:170 +#: actions/profilesettings.php:82 actions/register.php:184 +#: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" -#: ../actions/profilesettings.php:101 -#: ../actions/register.php:82 -#: ../actions/updateprofile.php:103 -#: actions/profilesettings.php:216 -#: actions/register.php:89 -#: actions/updateprofile.php:104 -#: actions/profilesettings.php:205 -#: actions/register.php:174 -#: actions/updateprofile.php:107 +#: ../actions/profilesettings.php:101 ../actions/register.php:82 +#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 +#: actions/register.php:89 actions/updateprofile.php:104 +#: actions/profilesettings.php:205 actions/register.php:174 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La bio est trop longue (140 caractères maximum)." -#: ../lib/deleteaction.php:41 -#: lib/deleteaction.php:41 -#: lib/deleteaction.php:69 +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossible de supprimer ce statut." -#: ../actions/updateprofile.php:119 -#: actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Impossible de lire l'URL '%s'" -#: ../actions/password.php:85 -#: ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 -#: actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 -#: actions/recoverpassword.php:347 +#: ../actions/password.php:85 ../actions/recoverpassword.php:300 +#: actions/profilesettings.php:404 actions/recoverpassword.php:313 +#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Impossible de sauvegarder le nouveau mot de passe." -#: ../actions/emailsettings.php:57 -#: ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 -#: actions/emailsettings.php:58 -#: actions/imsettings.php:59 -#: actions/smssettings.php:62 -#: actions/emailsettings.php:111 -#: actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 +#: ../actions/smssettings.php:62 actions/emailsettings.php:58 +#: actions/imsettings.php:59 actions/smssettings.php:62 +#: actions/emailsettings.php:111 actions/imsettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annuler" -#: ../lib/openid.php:121 -#: lib/openid.php:121 -#: lib/openid.php:130 +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossible d'instancier l'objet client pour OpenID." -#: ../actions/imsettings.php:163 -#: actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossible d'utiliser cet identifiant Jabber" -#: ../actions/emailsettings.php:181 -#: actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Impossible d'utiliser cette adresse courriel" -#: ../actions/password.php:45 -#: actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: ../actions/password.php:45 actions/profilesettings.php:184 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modifier" -#: ../lib/settingsaction.php:88 -#: lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Modifier le traitement des courriels" -#: ../actions/password.php:32 -#: actions/profilesettings.php:36 +#: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Modifier le mot de passe" -#: ../lib/settingsaction.php:94 -#: lib/accountsettingsaction.php:111 +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modifier votre mot de passe" -#: ../lib/settingsaction.php:85 -#: lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" -#: ../actions/password.php:43 -#: ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 -#: ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 -#: actions/recoverpassword.php:187 -#: actions/register.php:169 -#: actions/smssettings.php:65 -#: actions/passwordsettings.php:105 -#: actions/recoverpassword.php:221 -#: actions/register.php:376 -#: actions/smssettings.php:122 +#: ../actions/password.php:43 ../actions/recoverpassword.php:181 +#: ../actions/register.php:155 ../actions/smssettings.php:65 +#: actions/profilesettings.php:182 actions/recoverpassword.php:187 +#: actions/register.php:169 actions/smssettings.php:65 +#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 +#: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmer" -#: ../actions/confirmaddress.php:90 -#: actions/confirmaddress.php:90 +#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" msgstr "Confirmer l'adresse" -#: ../actions/emailsettings.php:238 -#: ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:230 -#: actions/smssettings.php:253 -#: actions/emailsettings.php:379 -#: actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 +#: ../actions/smssettings.php:245 actions/emailsettings.php:256 +#: actions/imsettings.php:230 actions/smssettings.php:253 +#: actions/emailsettings.php:379 actions/imsettings.php:361 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmation annulée." -#: ../actions/smssettings.php:63 -#: actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Code de confirmation" -#: ../actions/confirmaddress.php:38 -#: actions/confirmaddress.php:38 +#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Code de confirmation non trouvé." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" "\n" "* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez maintenant :\n" +"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " +"maintenant :\n" "\n" "* Visiter [votre profil](%s) et publier votre premier statut.\n" -"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin d'envoyer et recevoir vos statuts par messagerie instantanée.\n" -"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez connaître ou qui partagent vos intêrets.\n" -"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire plus à votre sujet.\n" -"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir plus sur le fonctionnement du service.\n" +"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " +"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" +"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " +"connaître ou qui partagent vos intêrets.\n" +"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " +"plus à votre sujet.\n" +"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " +"plus sur le fonctionnement du service.\n" "\n" -"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre service." +"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " +"service." -#: ../actions/finishopenidlogin.php:91 -#: actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 -#: lib/action.php:330 +#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connecter" -#: ../actions/finishopenidlogin.php:86 -#: actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connecter à un compte existant" -#: ../lib/util.php:332 -#: lib/util.php:348 -#: lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" -#: ../lib/openid.php:178 -#: lib/openid.php:178 -#: lib/openid.php:187 +#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Impossible de créer le formulaire OpenID : %s" -#: ../actions/twitapifriendships.php:60 -#: ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 -#: actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 -#: actions/twitapifriendships.php:64 +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossible de suivre l'utilisateur : %s est déjà dans votre liste." -#: ../actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." -#: ../lib/openid.php:160 -#: lib/openid.php:160 -#: lib/openid.php:169 +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Impossible de rediriger vers le serveur : %s" -#: ../actions/updateprofile.php:162 -#: actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Impossible de sauvegarder les informations de l'avatar" -#: ../actions/updateprofile.php:155 -#: actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Impossible de sauvegarder les informations du nouveau profil" -#: ../lib/subs.php:54 -#: lib/subs.php:61 -#: lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Impossible d'abonner une autre personne à votre profil." -#: ../lib/subs.php:46 -#: lib/subs.php:46 -#: lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Impossible de s'abonner." -#: ../actions/recoverpassword.php:102 -#: actions/recoverpassword.php:105 +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." #: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 -#: actions/finishremotesubscribe.php:114 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "Impossible de convertir les jetons de requête en jetons d'accès" -#: ../actions/confirmaddress.php:84 -#: ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 -#: ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 -#: actions/emailsettings.php:252 -#: actions/imsettings.php:226 -#: actions/smssettings.php:249 -#: actions/confirmaddress.php:126 -#: actions/emailsettings.php:375 -#: actions/imsettings.php:357 -#: actions/smssettings.php:370 +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." -#: ../lib/subs.php:103 -#: lib/subs.php:116 -#: lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Impossible de cesser l'abonnement" -#: ../actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Aucun statut n'a été trouvé." -#: ../actions/remotesubscribe.php:127 -#: actions/remotesubscribe.php:136 +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." msgstr "Impossible d'obtenir le jeton de requête." -#: ../actions/emailsettings.php:205 -#: ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 -#: actions/emailsettings.php:223 -#: actions/imsettings.php:195 -#: actions/smssettings.php:214 -#: actions/emailsettings.php:337 -#: actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 +#: ../actions/smssettings.php:206 actions/emailsettings.php:223 +#: actions/imsettings.php:195 actions/smssettings.php:214 +#: actions/emailsettings.php:337 actions/imsettings.php:311 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossible d'insérer le code de confirmation." #: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 -#: actions/finishremotesubscribe.php:218 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Impossible d'insérer un nouvel abonnement." -#: ../actions/profilesettings.php:184 -#: ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 -#: actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 -#: actions/twitapiaccount.php:81 +#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 +#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 +#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Impossible d'enregistrer le profil." -#: ../actions/profilesettings.php:161 -#: actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Impossible de mettre à jour l'auto-abonnement." -#: ../actions/emailsettings.php:280 -#: ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 -#: actions/emailsettings.php:312 -#: actions/emailsettings.php:440 -#: actions/emailsettings.php:462 +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Impossible de mettre à jour le dossier de l'utilisateur." -#: ../actions/confirmaddress.php:72 -#: ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 -#: ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 -#: ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 -#: ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 -#: actions/emailsettings.php:174 -#: actions/emailsettings.php:277 -#: actions/imsettings.php:146 -#: actions/imsettings.php:251 -#: actions/profilesettings.php:256 -#: actions/smssettings.php:165 -#: actions/smssettings.php:277 -#: actions/confirmaddress.php:114 -#: actions/emailsettings.php:280 -#: actions/emailsettings.php:411 -#: actions/imsettings.php:252 -#: actions/imsettings.php:395 -#: actions/othersettings.php:162 -#: actions/profilesettings.php:259 -#: actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 +#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 +#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 +#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 +#: actions/confirmaddress.php:72 actions/emailsettings.php:174 +#: actions/emailsettings.php:277 actions/imsettings.php:146 +#: actions/imsettings.php:251 actions/profilesettings.php:256 +#: actions/smssettings.php:165 actions/smssettings.php:277 +#: actions/confirmaddress.php:114 actions/emailsettings.php:280 +#: actions/emailsettings.php:411 actions/imsettings.php:252 +#: actions/imsettings.php:395 actions/othersettings.php:162 +#: actions/profilesettings.php:259 actions/smssettings.php:266 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Impossible de mettre à jour l'utilisateur." -#: ../actions/finishopenidlogin.php:84 -#: actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Créer" -#: ../actions/finishopenidlogin.php:70 -#: actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Créer un nouvel utilisateur avec ce pseudo." -#: ../actions/finishopenidlogin.php:68 -#: actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Créer un nouveau compte" -#: ../actions/finishopenidlogin.php:191 -#: actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Création d'un nouveau compte pour un OpenID qui a déjà un utilisateur." -#: ../actions/imsettings.php:45 -#: actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: ../actions/imsettings.php:45 actions/imsettings.php:46 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Adresse Jabber/GTalk actuellement confirmée." -#: ../actions/smssettings.php:46 -#: actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS." -#: ../actions/emailsettings.php:44 -#: actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Adresse courriel actuellement confirmée." -#: ../actions/showstream.php:356 -#: actions/showstream.php:367 +#: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Actuellement" -#: ../classes/Notice.php:72 -#: classes/Notice.php:86 -#: classes/Notice.php:91 +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant le hashtag : %s" -#: ../lib/util.php:1061 -#: lib/util.php:1110 -#: classes/Notice.php:698 +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erreur de base de donnée en insérant la réponse :%s" @@ -962,2391 +904,2189 @@ msgstr "Erreur de base de donnée en insérant la réponse :%s" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: ../actions/deletenotice.php:41 -#: actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Supprimer ce statut" -#: ../actions/profilesettings.php:51 -#: ../actions/register.php:172 -#: actions/profilesettings.php:84 -#: actions/register.php:186 -#: actions/profilesettings.php:114 +#: ../actions/profilesettings.php:51 ../actions/register.php:172 +#: actions/profilesettings.php:84 actions/register.php:186 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Décrivez vos intérêts en 140 caractères" -#: ../actions/register.php:158 -#: ../actions/register.php:161 -#: ../lib/settingsaction.php:87 -#: actions/register.php:172 -#: actions/register.php:175 -#: lib/settingsaction.php:87 -#: actions/register.php:381 -#: actions/register.php:385 -#: lib/accountsettingsaction.php:113 +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Courriel" -#: ../actions/emailsettings.php:59 -#: actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Adresse courriel" -#: ../actions/emailsettings.php:32 -#: actions/emailsettings.php:32 +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" msgstr "Paramètres du courriel" -#: ../actions/register.php:73 -#: actions/register.php:80 -#: actions/register.php:163 +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Cette adresse courriel est déjà utilisée." -#: ../lib/mail.php:90 -#: lib/mail.php:90 -#: lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmation de l'adresse courriel" -#: ../actions/emailsettings.php:61 -#: actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Adresse courriel (ex : nom@mondomaine.com)" -#: ../actions/invite.php:129 -#: actions/invite.php:137 -#: actions/invite.php:174 +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Adresses courriel" -#: ../actions/recoverpassword.php:191 -#: actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Entrez un pseudo ou une adresse courriel." -#: ../actions/smssettings.php:64 -#: actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Entrez le code que vous avez reçu sur votre téléphone." -#: ../actions/userauthorization.php:137 -#: actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erreur d'autorisation du jeton" -#: ../actions/finishopenidlogin.php:253 -#: actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erreur lors de la connexion de l'utilisateur sur OpenID" -#: ../actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:78 +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." msgstr "Erreur lors de la connexion de l'utilisateur." #: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 -#: actions/finishremotesubscribe.php:166 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erreur lors de l'insertion de l'avatar" #: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 -#: actions/finishremotesubscribe.php:158 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erreur lors de l'insertion du nouveau profil" #: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 -#: actions/finishremotesubscribe.php:182 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erreur lors de l'insertion du profil distant" -#: ../actions/recoverpassword.php:240 -#: actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erreur lors de l'enregistrement de la confirmation du courriel." -#: ../actions/userauthorization.php:140 -#: actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erreur lors de l'enregistrement du profil distant" -#: ../lib/openid.php:226 -#: lib/openid.php:226 -#: lib/openid.php:235 +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erreur lors de l'enregistrement du profil." -#: ../lib/openid.php:237 -#: lib/openid.php:237 -#: lib/openid.php:246 +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erreur lors de l'enregistrement de l'utilisateur." -#: ../actions/password.php:80 -#: actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erreur lors de l'enregistrement de l'utilisateur ; invalide." -#: ../actions/login.php:47 -#: ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 -#: ../actions/register.php:98 -#: actions/login.php:47 -#: actions/login.php:73 -#: actions/recoverpassword.php:320 -#: actions/register.php:108 -#: actions/login.php:112 -#: actions/login.php:138 -#: actions/recoverpassword.php:354 -#: actions/register.php:198 +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erreur lors de la configuration de l'utilisateur." -#: ../actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:83 +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" msgstr "Erreur lors de la mise à jour du profil" #: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 -#: actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erreur lors de la mise à jour du profil distant" -#: ../actions/recoverpassword.php:80 -#: actions/recoverpassword.php:80 +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." msgstr "Erreur dans le code de confirmation." -#: ../actions/finishopenidlogin.php:89 -#: actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Ce pseudo est déjà utilisé" -#: ../lib/util.php:326 -#: lib/util.php:342 -#: lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" -#: ../actions/avatar.php:115 -#: actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "La mise à jour de l'avatar a échoué." -#: ../actions/all.php:61 -#: ../actions/allrss.php:64 -#: actions/all.php:61 -#: actions/allrss.php:64 -#: actions/all.php:75 -#: actions/allrss.php:107 +#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 +#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Flux des amis de %s" -#: ../actions/replies.php:65 -#: ../actions/repliesrss.php:80 -#: actions/replies.php:65 -#: actions/repliesrss.php:66 -#: actions/replies.php:134 -#: actions/repliesrss.php:71 +#: ../actions/replies.php:65 ../actions/repliesrss.php:80 +#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Flux des réponses à %s" -#: ../actions/tag.php:55 -#: actions/tag.php:55 -#: actions/tag.php:61 +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Flux du marquage %s" -#: ../lib/searchaction.php:105 -#: lib/searchaction.php:105 +#: ../lib/searchaction.php:105 lib/searchaction.php:105 #: lib/searchgroupnav.php:83 msgid "Find content of notices" msgstr "Chercher dans le contenu des statuts" -#: ../lib/searchaction.php:101 -#: lib/searchaction.php:101 +#: ../lib/searchaction.php:101 lib/searchaction.php:101 #: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" -#: ../actions/login.php:122 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." -#: ../actions/profilesettings.php:44 -#: ../actions/register.php:164 -#: actions/profilesettings.php:77 -#: actions/register.php:178 -#: actions/profilesettings.php:103 -#: actions/register.php:391 -#: actions/showgroup.php:235 -#: actions/showstream.php:262 -#: actions/tagother.php:105 -#: lib/groupeditform.php:142 +#: ../actions/profilesettings.php:44 ../actions/register.php:164 +#: actions/profilesettings.php:77 actions/register.php:178 +#: actions/profilesettings.php:103 actions/register.php:391 +#: actions/showgroup.php:235 actions/showstream.php:262 +#: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nom complet" -#: ../actions/profilesettings.php:98 -#: ../actions/register.php:79 -#: ../actions/updateprofile.php:93 -#: actions/profilesettings.php:213 -#: actions/register.php:86 -#: actions/updateprofile.php:94 -#: actions/editgroup.php:195 -#: actions/newgroup.php:146 -#: actions/profilesettings.php:202 -#: actions/register.php:171 -#: actions/updateprofile.php:97 +#: ../actions/profilesettings.php:98 ../actions/register.php:79 +#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 +#: actions/register.php:86 actions/updateprofile.php:94 +#: actions/editgroup.php:195 actions/newgroup.php:146 +#: actions/profilesettings.php:202 actions/register.php:171 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nom complet trop long (maximum de 255 caractères)." -#: ../lib/util.php:322 -#: lib/util.php:338 -#: lib/action.php:344 -#: lib/action.php:566 +#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Aide" -#: ../lib/util.php:298 -#: lib/util.php:314 -#: lib/action.php:322 -#: lib/facebookaction.php:200 +#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Accueil" -#: ../actions/profilesettings.php:46 -#: ../actions/register.php:167 -#: actions/profilesettings.php:79 -#: actions/register.php:181 -#: actions/profilesettings.php:107 -#: actions/register.php:396 -#: lib/groupeditform.php:146 +#: ../actions/profilesettings.php:46 ../actions/register.php:167 +#: actions/profilesettings.php:79 actions/register.php:181 +#: actions/profilesettings.php:107 actions/register.php:396 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Site personnel" -#: ../actions/profilesettings.php:95 -#: ../actions/register.php:76 -#: actions/profilesettings.php:210 -#: actions/register.php:83 -#: actions/editgroup.php:192 -#: actions/newgroup.php:143 -#: actions/profilesettings.php:199 -#: actions/register.php:168 +#: ../actions/profilesettings.php:95 ../actions/register.php:76 +#: actions/profilesettings.php:210 actions/register.php:83 +#: actions/editgroup.php:192 actions/newgroup.php:143 +#: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "L'adresse du site personnel n'est pas un URL valide. " -#: ../actions/emailsettings.php:91 -#: actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Je veux envoyer mes statuts par courriel." -#: ../lib/settingsaction.php:102 -#: lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" -#: ../actions/imsettings.php:60 -#: actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: ../actions/imsettings.php:60 actions/imsettings.php:61 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adresse de messagerie instantanée" -#: ../actions/imsettings.php:33 -#: actions/imsettings.php:33 +#: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" msgstr "Paramètres de messagerie instantanée" -#: ../actions/finishopenidlogin.php:88 -#: actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Si vous avez déjà un compte, ouvrez une session avec votre identifiant et votre mot de passe pour les relier à votre OpenID." +#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si vous avez déjà un compte, ouvrez une session avec votre identifiant et " +"votre mot de passe pour les relier à votre OpenID." -#: ../actions/openidsettings.php:45 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et cliquez sur « Ajouter »." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et " +"cliquez sur « Ajouter »." -#: ../actions/recoverpassword.php:137 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " -#: ../actions/emailsettings.php:67 -#: ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 -#: actions/smssettings.php:76 -#: actions/emailsettings.php:127 -#: actions/smssettings.php:140 +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Courriel entrant" -#: ../actions/emailsettings.php:283 -#: actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "L'adresse de courriel entrant a été supprimée." -#: ../actions/password.php:69 -#: actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: ../actions/password.php:69 actions/profilesettings.php:388 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Ancien mot de passe incorrect" -#: ../actions/login.php:67 -#: actions/login.php:67 -#: actions/facebookhome.php:131 -#: actions/login.php:132 +#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Identifiant ou mot de passe incorrect." -#: ../actions/recoverpassword.php:265 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Les instructions pour récupérer votre mot de passe ont été envoyées à l'adresse courriel indiquée dans votre compte." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Les instructions pour récupérer votre mot de passe ont été envoyées à " +"l'adresse courriel indiquée dans votre compte." -#: ../actions/updateprofile.php:114 -#: actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL de l'avatar invalide : '%s'" -#: ../actions/invite.php:55 -#: actions/invite.php:62 -#: actions/invite.php:70 +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Adresse courriel invalide : %s" -#: ../actions/updateprofile.php:98 -#: actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Site personnel invalide '%s'" -#: ../actions/updateprofile.php:82 -#: actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de la licence invalide '%s'" -#: ../actions/postnotice.php:61 -#: actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contenu invalide" -#: ../actions/postnotice.php:67 -#: actions/postnotice.php:68 +#: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 msgid "Invalid notice uri" msgstr "URI du statut invalide" -#: ../actions/postnotice.php:72 -#: actions/postnotice.php:73 +#: ../actions/postnotice.php:72 actions/postnotice.php:73 #: actions/postnotice.php:77 msgid "Invalid notice url" msgstr "URL du statut invalide" -#: ../actions/updateprofile.php:87 -#: actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL du profil invalide '%s'." -#: ../actions/remotesubscribe.php:96 -#: actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL du profil invalide (mauvais format)" #: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 -#: actions/finishremotesubscribe.php:80 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." msgstr "URL du profil invalide, retourné par le serveur." -#: ../actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:37 +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "Taille incorrecte." -#: ../actions/finishopenidlogin.php:235 -#: ../actions/register.php:93 -#: ../actions/register.php:111 -#: actions/finishopenidlogin.php:241 -#: actions/register.php:103 -#: actions/register.php:121 -#: actions/finishopenidlogin.php:279 -#: actions/register.php:193 -#: actions/register.php:211 +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Identifiant ou mot de passe incorrect." -#: ../actions/invite.php:79 -#: actions/invite.php:86 -#: actions/invite.php:102 +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitation(s) envoyée(s)" -#: ../actions/invite.php:97 -#: actions/invite.php:104 -#: actions/invite.php:136 +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" -#: ../lib/util.php:306 -#: lib/util.php:322 -#: lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Inviter" -#: ../actions/invite.php:123 -#: actions/invite.php:130 -#: actions/invite.php:104 +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Inviter de nouveaux utilisateurs" -#: ../lib/util.php:261 -#: lib/util.php:277 -#: lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), version %s, disponible sous la licence [GNU Affero General Public License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " +"version %s, disponible sous la licence [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 -#: actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." -#: ../actions/imsettings.php:62 -#: actions/imsettings.php:63 +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " +"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " +"GTalk." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Langue" -#: ../actions/profilesettings.php:113 -#: actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "La langue est trop longue (255 caractères maximum)." -#: ../actions/profilesettings.php:52 -#: ../actions/register.php:173 -#: actions/profilesettings.php:85 -#: actions/register.php:187 -#: actions/profilesettings.php:117 -#: actions/register.php:408 -#: actions/showgroup.php:244 -#: actions/showstream.php:271 -#: actions/tagother.php:113 -#: lib/groupeditform.php:156 -#: lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: ../actions/profilesettings.php:52 ../actions/register.php:173 +#: actions/profilesettings.php:85 actions/register.php:187 +#: actions/profilesettings.php:117 actions/register.php:408 +#: actions/showgroup.php:244 actions/showstream.php:271 +#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Emplacement" -#: ../actions/profilesettings.php:104 -#: ../actions/register.php:85 -#: ../actions/updateprofile.php:108 -#: actions/profilesettings.php:219 -#: actions/register.php:92 -#: actions/updateprofile.php:109 -#: actions/editgroup.php:201 -#: actions/newgroup.php:152 -#: actions/profilesettings.php:208 -#: actions/register.php:177 -#: actions/updateprofile.php:112 +#: ../actions/profilesettings.php:104 ../actions/register.php:85 +#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 +#: actions/register.php:92 actions/updateprofile.php:109 +#: actions/editgroup.php:201 actions/newgroup.php:152 +#: actions/profilesettings.php:208 actions/register.php:177 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Emplacement trop long (maximum de 255 caractères)." -#: ../actions/login.php:97 -#: ../actions/login.php:106 -#: ../actions/openidlogin.php:68 -#: ../lib/util.php:310 -#: actions/login.php:97 -#: actions/login.php:106 -#: actions/openidlogin.php:77 -#: lib/util.php:326 -#: actions/facebooklogin.php:93 -#: actions/login.php:186 -#: actions/login.php:239 -#: actions/openidlogin.php:112 -#: lib/action.php:335 -#: lib/facebookaction.php:288 -#: lib/facebookaction.php:315 -#: lib/logingroupnav.php:75 +#: ../actions/login.php:97 ../actions/login.php:106 +#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 +#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 +#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 +#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Ouvrir une session" -#: ../actions/openidlogin.php:44 -#: actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Ouvrir une session avec un compte [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." -#: ../lib/util.php:308 -#: lib/util.php:324 -#: lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Fermeture de session" -#: ../actions/register.php:166 -#: actions/register.php:180 -#: actions/register.php:393 +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#: ../actions/login.php:110 -#: actions/login.php:110 -#: actions/login.php:245 -#: lib/facebookaction.php:320 +#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mot de passe perdu ?" -#: ../actions/emailsettings.php:80 -#: ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 -#: actions/smssettings.php:89 +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Nouvelle adresse courriel pour poster ; annule l'ancienne." -#: ../actions/emailsettings.php:27 -#: actions/emailsettings.php:27 +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%." -#: ../actions/showstream.php:300 -#: actions/showstream.php:315 -#: actions/showstream.php:480 +#: ../actions/showstream.php:300 actions/showstream.php:315 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membre depuis" -#: ../actions/userrss.php:70 -#: actions/userrss.php:67 -#: actions/userrss.php:72 +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Micro-blogging par %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, écrivez-nous à %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " +"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " +"écrivez-nous à %s." -#: ../actions/finishopenidlogin.php:79 -#: ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 -#: actions/register.php:202 -#: actions/finishopenidlogin.php:107 -#: actions/register.php:429 +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mes textes et mes fichiers sont disponibles sous" -#: ../actions/emailsettings.php:82 -#: ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 -#: actions/smssettings.php:91 -#: actions/emailsettings.php:142 -#: actions/smssettings.php:152 +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nouveau" -#: ../lib/mail.php:144 -#: lib/mail.php:144 -#: lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nouvelle adresse courriel pour poster dans %s" -#: ../actions/emailsettings.php:297 -#: actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nouvelle adresse courriel ajoutée." -#: ../actions/finishopenidlogin.php:71 -#: actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nouveau pseudo" -#: ../actions/newnotice.php:87 -#: actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nouveau statut" -#: ../actions/password.php:41 -#: ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 -#: actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 -#: actions/recoverpassword.php:219 +#: ../actions/password.php:41 ../actions/recoverpassword.php:179 +#: actions/profilesettings.php:180 actions/recoverpassword.php:185 +#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nouveau mot de passe" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." +msgstr "" +"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." -#: ../actions/login.php:101 -#: ../actions/profilesettings.php:41 -#: ../actions/register.php:151 -#: actions/login.php:101 -#: actions/profilesettings.php:74 -#: actions/register.php:165 -#: actions/login.php:228 -#: actions/profilesettings.php:98 -#: actions/register.php:367 -#: actions/showgroup.php:224 -#: actions/showstream.php:251 -#: actions/tagother.php:95 -#: lib/facebookaction.php:308 -#: lib/groupeditform.php:137 +#: ../actions/login.php:101 ../actions/profilesettings.php:41 +#: ../actions/register.php:151 actions/login.php:101 +#: actions/profilesettings.php:74 actions/register.php:165 +#: actions/login.php:228 actions/profilesettings.php:98 +#: actions/register.php:367 actions/showgroup.php:224 +#: actions/showstream.php:251 actions/tagother.php:95 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Pseudo" -#: ../actions/finishopenidlogin.php:175 -#: ../actions/profilesettings.php:110 -#: ../actions/register.php:69 -#: actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 -#: actions/register.php:76 -#: actions/editgroup.php:183 -#: actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 -#: actions/profilesettings.php:214 -#: actions/register.php:159 +#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 +#: ../actions/register.php:69 actions/finishopenidlogin.php:181 +#: actions/profilesettings.php:225 actions/register.php:76 +#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 +#: actions/newgroup.php:134 actions/profilesettings.php:214 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: ../actions/finishopenidlogin.php:165 -#: ../actions/profilesettings.php:88 -#: ../actions/register.php:67 -#: ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 -#: actions/profilesettings.php:203 -#: actions/register.php:74 -#: actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 -#: actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Les pseudos ne peuvent contenir que des caractères minuscules et des chiffres, sans espaces." +msgstr "" +"Les pseudos ne peuvent contenir que des caractères minuscules et des " +"chiffres, sans espaces." -#: ../actions/finishopenidlogin.php:170 -#: actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Pseudo non autorisé." -#: ../actions/remotesubscribe.php:72 -#: actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Pseudo de l'utilisateur que vous voulez suivre" -#: ../actions/recoverpassword.php:162 -#: actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Pseudo ou courriel" -#: ../actions/deletenotice.php:59 -#: actions/deletenotice.php:60 -#: actions/block.php:147 -#: actions/deletenotice.php:118 +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Non" -#: ../actions/imsettings.php:156 -#: actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Aucun identifiant Jabber" -#: ../actions/userauthorization.php:129 -#: actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Pas de requête d'autorisation !" -#: ../actions/smssettings.php:181 -#: actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Aucun fournisseur sélectionné." -#: ../actions/smssettings.php:316 -#: actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Aucun code entré" -#: ../actions/confirmaddress.php:33 -#: actions/confirmaddress.php:33 +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "Aucun code de confirmation." -#: ../actions/newnotice.php:44 -#: actions/newmessage.php:53 -#: actions/newnotice.php:44 -#: classes/Command.php:197 -#: actions/newmessage.php:109 -#: actions/newnotice.php:126 -#: classes/Command.php:223 +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Aucun contenu !" -#: ../actions/emailsettings.php:174 -#: actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Aucune adresse courriel." -#: ../actions/userbyid.php:32 -#: actions/userbyid.php:32 -#: actions/userbyid.php:70 +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Aucun identifiant." -#: ../actions/emailsettings.php:271 -#: actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Aucune adresse pour le courriel entrant." #: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 -#: actions/finishremotesubscribe.php:68 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." msgstr "Aucun pseudo proposé par le serveur distant." -#: ../actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 -#: actions/leavegroup.php:81 +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Aucun pseudo." -#: ../actions/emailsettings.php:222 -#: ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 -#: actions/emailsettings.php:240 -#: actions/imsettings.php:214 -#: actions/smssettings.php:237 -#: actions/emailsettings.php:363 -#: actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Aucune confirmation à annuler." -#: ../actions/smssettings.php:176 -#: actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Aucun numéro de téléphone." #: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 -#: actions/finishremotesubscribe.php:75 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "Aucun URL de profil renvoyé par le serveur." -#: ../actions/recoverpassword.php:226 -#: actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." -#: ../actions/userauthorization.php:49 -#: actions/userauthorization.php:55 +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" msgstr "Aucune requête trouvée !" -#: ../actions/noticesearch.php:64 -#: ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 -#: actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 -#: actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Aucun résultat " -#: ../actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:32 +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." msgstr "Aucune taille" -#: ../actions/twitapistatuses.php:595 -#: actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 -#: actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Aucun statut trouvé avec cet identifiant. " -#: ../actions/twitapistatuses.php:555 -#: actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Aucun statut trouvé avec cet identifiant." -#: ../actions/openidsettings.php:135 -#: actions/openidsettings.php:144 +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." msgstr "OpenID non trouvé." -#: ../actions/doc.php:29 -#: actions/doc.php:29 -#: actions/doc.php:64 +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Document non trouvé. " -#: ../actions/shownotice.php:32 -#: ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 -#: actions/shownotice.php:32 -#: actions/shownotice.php:83 -#: lib/deleteaction.php:30 -#: actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Statut non trouvé. " -#: ../actions/recoverpassword.php:56 -#: actions/recoverpassword.php:56 +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." msgstr "Code de récupération non trouvé. " -#: ../actions/postnotice.php:56 -#: actions/postnotice.php:57 +#: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" msgstr "Abonnement non trouvé " -#: ../actions/all.php:34 -#: ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 -#: ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 -#: ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 -#: ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 -#: ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 -#: ../actions/xrds.php:35 -#: ../lib/gallery.php:57 -#: ../lib/subs.php:33 -#: ../lib/subs.php:82 -#: actions/all.php:34 -#: actions/allrss.php:35 -#: actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 -#: actions/foaf.php:40 -#: actions/ical.php:31 -#: actions/remotesubscribe.php:93 -#: actions/remotesubscribe.php:100 -#: actions/replies.php:57 -#: actions/repliesrss.php:35 -#: actions/showfavorites.php:34 -#: actions/showstream.php:110 -#: actions/userbyid.php:36 -#: actions/userrss.php:35 -#: actions/xrds.php:35 -#: classes/Command.php:120 -#: classes/Command.php:162 -#: classes/Command.php:203 -#: classes/Command.php:237 -#: lib/gallery.php:62 -#: lib/mailbox.php:36 -#: lib/subs.php:33 -#: lib/subs.php:95 -#: actions/all.php:53 -#: actions/allrss.php:66 -#: actions/avatarbynickname.php:75 -#: actions/favoritesrss.php:64 -#: actions/foaf.php:41 -#: actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 -#: actions/replies.php:73 -#: actions/repliesrss.php:38 -#: actions/showfavorites.php:105 -#: actions/showstream.php:100 -#: actions/userbyid.php:74 -#: actions/usergroups.php:92 -#: actions/userrss.php:38 -#: actions/xrds.php:73 -#: classes/Command.php:140 -#: classes/Command.php:185 -#: classes/Command.php:234 -#: classes/Command.php:271 -#: lib/galleryaction.php:60 -#: lib/mailbox.php:82 -#: lib/subs.php:34 -#: lib/subs.php:109 +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Utilisateur non trouvé." -#: ../actions/recoverpassword.php:211 -#: actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." -#: ../lib/gallery.php:80 -#: lib/gallery.php:85 +#: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Il n'y a personne à montrer !" -#: ../actions/recoverpassword.php:60 -#: actions/recoverpassword.php:60 +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." msgstr "Ceci n'est pas un code de récupération." -#: ../scripts/maildaemon.php:50 -#: scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Ceci n'est pas un utilisateur inscrit." -#: ../lib/twitterapi.php:226 -#: ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 -#: lib/twitterapi.php:391 -#: lib/twitterapi.php:418 -#: lib/twitterapi.php:502 -#: lib/twitterapi.php:448 -#: lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Format de données non supporté." -#: ../actions/imsettings.php:167 -#: actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Identifiant Jabber invalide." -#: ../lib/openid.php:131 -#: lib/openid.php:131 -#: lib/openid.php:140 +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID invalide." -#: ../actions/emailsettings.php:185 -#: actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Adresse courriel invalide" -#: ../actions/register.php:63 -#: actions/register.php:70 -#: actions/register.php:152 +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Adresse courriel invalide." -#: ../actions/profilesettings.php:91 -#: ../actions/register.php:71 -#: actions/profilesettings.php:206 -#: actions/register.php:78 -#: actions/editgroup.php:186 -#: actions/newgroup.php:137 -#: actions/profilesettings.php:195 -#: actions/register.php:161 +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Pseudo invalide." -#: ../actions/remotesubscribe.php:120 -#: actions/remotesubscribe.php:129 +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 #: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." msgstr "URL de profil invalide (services incorrects)." -#: ../actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:122 +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 #: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." msgstr "URL de profil invalide (aucun XRDS défini)." -#: ../actions/remotesubscribe.php:104 -#: actions/remotesubscribe.php:113 +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de profil invalide (aucun document YADIS)." -#: ../actions/avatar.php:95 -#: actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Ceci n'est pas une image, ou c'est un fichier corrompu." #: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 -#: actions/finishremotesubscribe.php:54 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." msgstr "Non autorisé." #: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Réponse inattendue !" -#: ../actions/twitapistatuses.php:422 -#: actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non trouvé" -#: ../actions/finishaddopenid.php:29 -#: ../actions/logout.php:33 -#: ../actions/newnotice.php:29 -#: ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 -#: ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 -#: actions/disfavor.php:29 -#: actions/favor.php:30 -#: actions/finishaddopenid.php:29 -#: actions/logout.php:33 -#: actions/newmessage.php:28 -#: actions/newnotice.php:29 -#: actions/subscribe.php:28 -#: actions/unsubscribe.php:25 -#: lib/deleteaction.php:38 -#: lib/settingsaction.php:27 -#: actions/block.php:59 -#: actions/disfavor.php:61 -#: actions/favor.php:64 -#: actions/finishaddopenid.php:67 -#: actions/logout.php:71 -#: actions/newmessage.php:83 -#: actions/newnotice.php:90 -#: actions/nudge.php:63 -#: actions/subedit.php:31 -#: actions/subscribe.php:30 -#: actions/unblock.php:60 -#: actions/unsubscribe.php:27 -#: lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non connecté." -#: ../lib/subs.php:91 -#: lib/subs.php:104 -#: lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Pas abonné !" -#: ../actions/opensearch.php:35 -#: actions/opensearch.php:35 +#: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" msgstr "Recherche de statut" -#: ../actions/showstream.php:82 -#: actions/showstream.php:82 -#: actions/showstream.php:180 -#: actions/showstream.php:187 +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" msgstr "Flux des statuts de %s" -#: ../actions/shownotice.php:39 -#: actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Le statut n'a pas de profil" -#: ../actions/showstream.php:316 -#: actions/showstream.php:331 -#: actions/showstream.php:504 -#: lib/facebookaction.php:477 -#: lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Statuts" -#: ../actions/tag.php:35 -#: ../actions/tag.php:81 -#: actions/tag.php:35 -#: actions/tag.php:81 -#: actions/tag.php:41 +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Statuts marqués avec %s" -#: ../actions/password.php:39 -#: actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Ancien mot de passe" -#: ../lib/settingsaction.php:96 -#: ../lib/util.php:314 -#: lib/settingsaction.php:90 -#: lib/util.php:330 -#: lib/accountsettingsaction.php:116 -#: lib/action.php:341 -#: lib/logingroupnav.php:81 +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" -#: ../actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuration du compte OpenID" -#: ../lib/openid.php:180 -#: lib/openid.php:180 -#: lib/openid.php:266 +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Soumission automatique OpenID" -#: ../actions/finishaddopenid.php:99 -#: ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 -#: actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 -#: actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 -#: actions/openidlogin.php:80 +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Connexion OpenID" -#: ../actions/openidlogin.php:65 -#: ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 -#: actions/openidsettings.php:50 -#: actions/openidlogin.php:102 -#: actions/openidsettings.php:101 +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" -#: ../actions/finishaddopenid.php:42 -#: ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 -#: actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 -#: actions/finishopenidlogin.php:130 +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Authentification OpenID annulée." -#: ../actions/finishaddopenid.php:46 -#: ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 -#: actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 -#: actions/finishopenidlogin.php:134 +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "L'authentification OpenID a échoué : %s'" -#: ../lib/openid.php:133 -#: lib/openid.php:133 -#: lib/openid.php:142 +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Erreur OpenID : %s" -#: ../actions/openidsettings.php:144 -#: actions/openidsettings.php:153 +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." msgstr "OpenID retiré." -#: ../actions/openidsettings.php:37 -#: actions/openidsettings.php:37 +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 #: actions/openidsettings.php:59 msgid "OpenID settings" msgstr "Paramètres OpenID" -#: ../actions/invite.php:135 -#: actions/invite.php:143 -#: actions/invite.php:180 +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Ajouter un message personnel à l'invitation (optionnel)." -#: ../actions/avatar.php:84 -#: actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Transfert partiel." -#: ../actions/finishopenidlogin.php:90 -#: ../actions/login.php:102 -#: ../actions/register.php:153 -#: ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 -#: actions/login.php:102 -#: actions/register.php:167 -#: actions/finishopenidlogin.php:118 -#: actions/login.php:231 -#: actions/register.php:372 -#: lib/accountsettingsaction.php:110 -#: lib/facebookaction.php:311 +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Mot de passe" -#: ../actions/recoverpassword.php:288 -#: actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Le mot de passe et sa confirmation ne correspondent pas." -#: ../actions/recoverpassword.php:284 -#: actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Le mot de passe doit contenir au moins 6 caractères." -#: ../actions/recoverpassword.php:261 -#: ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 -#: actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 -#: actions/recoverpassword.php:301 +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Récupération de mot de passe demandée" -#: ../actions/password.php:89 -#: ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 -#: actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 -#: actions/recoverpassword.php:200 +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Mot de passe enregistré." -#: ../actions/password.php:61 -#: ../actions/register.php:88 -#: actions/profilesettings.php:380 -#: actions/register.php:98 -#: actions/passwordsettings.php:145 -#: actions/register.php:183 +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Les mots de passe ne correspondent pas." -#: ../lib/searchaction.php:100 -#: lib/searchaction.php:100 +#: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" msgstr "Personnes" -#: ../actions/opensearch.php:33 -#: actions/opensearch.php:33 +#: ../actions/opensearch.php:33 actions/opensearch.php:33 #: actions/opensearch.php:64 msgid "People Search" msgstr "Recherche de personnes" -#: ../actions/peoplesearch.php:33 -#: actions/peoplesearch.php:33 +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" msgstr "Recherche de personnes" -#: ../lib/stream.php:50 -#: lib/personal.php:50 -#: lib/personalgroupnav.php:98 +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personnel" -#: ../actions/invite.php:133 -#: actions/invite.php:141 -#: actions/invite.php:178 +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Message personnel" -#: ../actions/smssettings.php:69 -#: actions/smssettings.php:69 +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +msgstr "" +"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." -#: ../actions/imsettings.php:73 -#: actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" +msgstr "" +"Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" -#: ../actions/emailsettings.php:85 -#: ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 -#: actions/emailsettings.php:86 -#: actions/imsettings.php:68 -#: actions/smssettings.php:94 -#: actions/twittersettings.php:70 -#: actions/emailsettings.php:147 -#: actions/imsettings.php:133 -#: actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Préférences" -#: ../actions/emailsettings.php:162 -#: ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 -#: actions/emailsettings.php:180 -#: actions/imsettings.php:152 -#: actions/smssettings.php:171 -#: actions/emailsettings.php:286 -#: actions/imsettings.php:258 -#: actions/othersettings.php:168 -#: actions/smssettings.php:272 +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Préférences enregistrées" -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Langue préférée" -#: ../lib/util.php:328 -#: lib/util.php:344 -#: lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Confidentialité" -#: ../classes/Notice.php:95 -#: ../classes/Notice.php:106 -#: classes/Notice.php:109 -#: classes/Notice.php:119 -#: classes/Notice.php:145 -#: classes/Notice.php:155 +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problème lors de l'enregistrement du statut." -#: ../lib/settingsaction.php:84 -#: ../lib/stream.php:60 -#: lib/personal.php:60 -#: lib/settingsaction.php:84 -#: lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" -#: ../actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL du profil" -#: ../actions/profilesettings.php:34 -#: actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Paramètres du profil" -#: ../actions/postnotice.php:51 -#: ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 -#: actions/updateprofile.php:53 -#: actions/postnotice.php:55 -#: actions/updateprofile.php:56 +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil inconnu" -#: ../actions/public.php:54 -#: actions/public.php:54 -#: actions/public.php:124 +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" msgstr "Fil du flux public" -#: ../actions/public.php:33 -#: actions/public.php:33 -#: actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Flux public" -#: ../actions/imsettings.php:79 -#: actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." -#: ../actions/emailsettings.php:94 -#: actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publier un MicroID pour mon adresse courriel." -#: ../actions/tag.php:75 -#: ../actions/tag.php:76 -#: actions/tag.php:75 +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" msgstr "Marquages récents" -#: ../actions/recoverpassword.php:166 -#: actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Récupérer" -#: ../actions/recoverpassword.php:156 -#: actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Récupérer le mot de passe" -#: ../actions/recoverpassword.php:67 -#: actions/recoverpassword.php:67 +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "Code de récupération d'un utilisateur inconnu." -#: ../actions/register.php:142 -#: ../actions/register.php:193 -#: ../lib/util.php:312 -#: actions/register.php:152 -#: actions/register.php:207 -#: lib/util.php:328 -#: actions/register.php:69 -#: actions/register.php:436 -#: lib/action.php:338 -#: lib/facebookaction.php:277 -#: lib/logingroupnav.php:78 +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" -#: ../actions/register.php:28 -#: actions/register.php:28 -#: actions/finishopenidlogin.php:196 -#: actions/register.php:90 +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Création de compte non autorisée." -#: ../actions/register.php:200 -#: actions/register.php:214 -#: actions/register.php:67 +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Compte créé avec succès" -#: ../actions/userauthorization.php:120 -#: actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Refuser" -#: ../actions/login.php:103 -#: ../actions/register.php:176 -#: actions/login.php:103 -#: actions/register.php:190 -#: actions/login.php:234 -#: actions/openidlogin.php:107 -#: actions/register.php:414 +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../actions/updateprofile.php:70 -#: actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profil distant sans profil correspondant" -#: ../actions/remotesubscribe.php:65 -#: actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abonnement à distance " -#: ../actions/emailsettings.php:47 -#: ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 -#: ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 -#: ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 -#: actions/emailsettings.php:76 -#: actions/imsettings.php:49 -#: actions/openidsettings.php:108 -#: actions/smssettings.php:50 -#: actions/smssettings.php:84 -#: actions/twittersettings.php:59 -#: actions/emailsettings.php:101 -#: actions/emailsettings.php:134 -#: actions/imsettings.php:102 -#: actions/openidsettings.php:166 -#: actions/smssettings.php:103 -#: actions/smssettings.php:146 -#: actions/twittersettings.php:115 +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Retirer " -#: ../actions/openidsettings.php:68 -#: actions/openidsettings.php:69 +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 #: actions/openidsettings.php:123 msgid "Remove OpenID" msgstr "Retirer l'OpenID" -#: ../actions/openidsettings.php:73 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! " +"Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." -#: ../lib/stream.php:55 -#: lib/personal.php:55 -#: lib/personalgroupnav.php:103 +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Réponses" -#: ../actions/replies.php:47 -#: ../actions/repliesrss.php:76 -#: ../lib/stream.php:56 -#: actions/replies.php:47 -#: actions/repliesrss.php:62 -#: lib/personal.php:56 -#: actions/replies.php:116 -#: actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Réponses à %s" -#: ../actions/recoverpassword.php:183 -#: actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Réinitialiser" -#: ../actions/recoverpassword.php:173 -#: actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Réinitialiser le mot de passe" -#: ../lib/settingsaction.php:99 -#: lib/settingsaction.php:93 -#: actions/subscriptions.php:123 -#: lib/connectsettingsaction.php:107 +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" -#: ../actions/smssettings.php:67 -#: actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numéro SMS" -#: ../actions/smssettings.php:33 -#: actions/smssettings.php:33 +#: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Paramètres SMS" -#: ../lib/mail.php:219 -#: lib/mail.php:225 -#: lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: ../actions/recoverpassword.php:182 -#: actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Identique au mot de passe ci-dessus" -#: ../actions/register.php:156 -#: actions/register.php:170 -#: actions/register.php:377 +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." -msgstr "" -"Identique au mot de passe ci-dessus. Requis." +msgstr "Identique au mot de passe ci-dessus. Requis." -#: ../actions/emailsettings.php:97 -#: ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 -#: ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 -#: actions/imsettings.php:82 -#: actions/profilesettings.php:101 -#: actions/smssettings.php:100 -#: actions/twittersettings.php:83 -#: actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 -#: actions/imsettings.php:157 -#: actions/othersettings.php:117 -#: actions/profilesettings.php:150 -#: actions/smssettings.php:169 -#: actions/subscriptions.php:124 -#: actions/tagother.php:152 -#: actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" -#: ../lib/searchaction.php:84 -#: ../lib/util.php:300 -#: lib/searchaction.php:84 -#: lib/util.php:316 -#: lib/action.php:325 +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Rechercher" -#: ../actions/noticesearch.php:80 -#: actions/noticesearch.php:85 +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 #: actions/noticesearch.php:127 msgid "Search Stream Feed" msgstr "Rechercher dans le flux de recherche" -#: ../actions/noticesearch.php:30 -#: actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " +"recherche par des espaces. Ils doivent contenir au moins 3 caractères." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." -#: ../actions/smssettings.php:296 -#: actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Sélectionnez un fournisseur de téléphone mobile" -#: ../actions/invite.php:137 -#: ../lib/util.php:1172 -#: actions/invite.php:145 -#: lib/util.php:1306 -#: lib/util.php:1731 -#: actions/invite.php:182 -#: lib/messageform.php:167 -#: lib/noticeform.php:177 +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Envoyer" -#: ../actions/emailsettings.php:73 -#: ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 -#: actions/smssettings.php:82 -#: actions/emailsettings.php:132 -#: actions/smssettings.php:145 +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Écrivez à cette adresse courriel pour publier de nouveaux statuts. " -#: ../actions/emailsettings.php:88 -#: actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "" -"Avertissez-moi par courriel des nouveaux abonnements." +msgstr "Avertissez-moi par courriel des nouveaux abonnements." -#: ../actions/imsettings.php:70 -#: actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Envoyez-moi les statuts par Jabber/GTalk." -#: ../actions/smssettings.php:97 -#: actions/smssettings.php:97 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma facture de téléphonie mobile." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " +"facture de téléphonie mobile." -#: ../actions/imsettings.php:76 -#: actions/imsettings.php:77 +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne suis pas abonné." +"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " +"suis pas abonné." -#: ../lib/util.php:304 -#: lib/util.php:320 -#: lib/facebookaction.php:215 +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Préférences" -#: ../actions/profilesettings.php:192 -#: actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Préférences enregistrées." -#: ../actions/tag.php:60 -#: actions/tag.php:60 +#: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" msgstr "Marquages les plus populaires des 7 derniers jours" -#: ../actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:66 +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." msgstr "Quelqu'un utilise déjà cet OpenID." -#: ../actions/finishopenidlogin.php:42 -#: ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 -#: actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 -#: actions/openidsettings.php:202 +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." msgstr "Quelque chose de bizarre est arrivé." -#: ../scripts/maildaemon.php:58 -#: scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Désolé, la réception de courriels n'est pas permise. " -#: ../scripts/maildaemon.php:54 -#: scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "" -"Désolé, ceci n'est pas votre adresse de courriel entrant." +msgstr "Désolé, ceci n'est pas votre adresse de courriel entrant." -#: ../lib/util.php:330 -#: lib/util.php:346 -#: lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Source" -#: ../actions/showstream.php:296 -#: actions/showstream.php:311 -#: actions/showstream.php:476 +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiques" -#: ../actions/finishopenidlogin.php:182 -#: ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 -#: actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 -#: actions/finishopenidlogin.php:290 +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID non trouvé." -#: ../actions/remotesubscribe.php:75 -#: ../actions/showstream.php:188 -#: ../actions/showstream.php:197 -#: actions/remotesubscribe.php:84 -#: actions/showstream.php:197 -#: actions/showstream.php:206 -#: actions/remotesubscribe.php:113 -#: actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "S'abonner" -#: ../actions/showstream.php:313 -#: ../actions/subscribers.php:27 -#: actions/showstream.php:328 -#: actions/subscribers.php:27 -#: actions/showstream.php:436 -#: actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnés" -#: ../actions/userauthorization.php:310 -#: actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement autorisé" -#: ../actions/userauthorization.php:320 -#: actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement refusé" -#: ../actions/showstream.php:230 -#: ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 -#: actions/showstream.php:240 -#: actions/showstream.php:322 -#: actions/subscriptions.php:27 -#: actions/showstream.php:407 -#: actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" -#: ../actions/avatar.php:87 -#: actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." -#: ../actions/tag.php:41 -#: ../lib/util.php:301 -#: actions/tag.php:41 -#: lib/util.php:317 -#: actions/profilesettings.php:122 -#: actions/showstream.php:297 -#: actions/tagother.php:147 -#: actions/tagother.php:207 -#: lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Marquages" -#: ../lib/searchaction.php:104 -#: lib/searchaction.php:104 +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texte" -#: ../actions/noticesearch.php:34 -#: actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Recherche de texte" -#: ../actions/openidsettings.php:140 -#: actions/openidsettings.php:149 +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 #: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." msgstr "Cet OpenID ne vous appartient pas." -#: ../actions/confirmaddress.php:52 -#: actions/confirmaddress.php:52 +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." msgstr "Cette adresse a déjà été confirmée." -#: ../actions/confirmaddress.php:43 -#: actions/confirmaddress.php:43 +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" msgstr "Ce code de confirmation n'est pas pour vous !" -#: ../actions/emailsettings.php:191 -#: actions/emailsettings.php:209 +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "" -"Cette adresse courriel appartient déjà à un autre utilisateur." +msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." -#: ../actions/avatar.php:80 -#: actions/profilesettings.php:317 +#: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." msgstr "Ce fichier est trop gros." -#: ../actions/imsettings.php:170 -#: actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Vous utilisez déjà cet idenfiant Jabber." -#: ../actions/emailsettings.php:188 -#: actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "" -"Vous utilisez déjà cette adresse courriel." +msgstr "Vous utilisez déjà cette adresse courriel." -#: ../actions/smssettings.php:188 -#: actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "" -"Vous utilisez déjà ce numéro de téléphone." +msgstr "Vous utilisez déjà ce numéro de téléphone." -#: ../actions/imsettings.php:233 -#: actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ceci n'est pas votre identifiant Jabber." -#: ../actions/emailsettings.php:249 -#: actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "" -"Ceci n'est pas votre adresse courriel." +msgstr "Ceci n'est pas votre adresse courriel." -#: ../actions/smssettings.php:257 -#: actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "" -"Ceci n'est pas votre numéro de téléphone." +msgstr "Ceci n'est pas votre numéro de téléphone." -#: ../actions/emailsettings.php:226 -#: ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:218 -#: actions/emailsettings.php:367 -#: actions/imsettings.php:349 +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Cette adresse de messagerie instantanée est erronée." -#: ../actions/smssettings.php:233 -#: actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "" -"Ce code de confirmation est incorrect." +msgstr "Ce code de confirmation est incorrect." -#: ../actions/smssettings.php:191 -#: actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "" -"Ce numéro de téléphone est déjà utilisé." +msgstr "Ce numéro de téléphone est déjà utilisé." -#: ../actions/newnotice.php:49 -#: ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 -#: actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 -#: actions/twitapistatuses.php:276 +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: ../actions/twitapiaccount.php:74 -#: actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 255 caractères." -#: ../actions/confirmaddress.php:92 -#: actions/confirmaddress.php:92 +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adresse \"%s\" a été validée pour votre compte." -#: ../actions/emailsettings.php:264 -#: ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 -#: actions/emailsettings.php:282 -#: actions/imsettings.php:258 -#: actions/smssettings.php:282 -#: actions/emailsettings.php:416 -#: actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'adresse a été supprimée." -#: ../actions/userauthorization.php:312 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" -#: ../actions/userauthorization.php:322 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " -#: ../actions/subscribers.php:35 -#: actions/subscribers.php:35 +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Ces personnes suivent les statuts de %s." -#: ../actions/subscribers.php:33 -#: actions/subscribers.php:33 +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Ces personnes suivent vos statuts. " -#: ../actions/subscriptions.php:35 -#: actions/subscriptions.php:35 +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Les statuts de ces personnes sont suivis par %s." -#: ../actions/subscriptions.php:33 -#: actions/subscriptions.php:33 +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Vous suivez les statuts de ces personnes. " -#: ../actions/invite.php:89 -#: actions/invite.php:96 -#: actions/invite.php:128 -msgid "These people are already users and you were automatically subscribed to them:" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Ce code de validation est périmé. Veuillez recommencer. " -#: ../lib/openid.php:195 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur OpenID." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le " +"cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur " +"OpenID." -#: ../actions/finishopenidlogin.php:56 -#: actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "C'est votre première ouverture de session dans %s, et nous devons relier votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, soit relier votre OpenID à un compte existant." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"C'est votre première ouverture de session dans %s, et nous devons relier " +"votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, " +"soit relier votre OpenID à un compte existant." -#: ../actions/twitapifriendships.php:108 -#: ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 -#: actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 -#: actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 -#: actions/twitapistatuses.php:436 +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ce processus requiert un POST ou un DELETE." -#: ../actions/twitapiaccount.php:65 -#: ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 -#: actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 -#: actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 -#: actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 -#: actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Ce processus requiert un POST." -#: ../lib/util.php:164 -#: lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "Cette page n'est pas disponible dans un des formats que vous avez autorisés." +msgstr "" +"Cette page n'est pas disponible dans un des formats que vous avez autorisés." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuseau horaire" -#: ../actions/profilesettings.php:107 -#: actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n'a été choisi." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou [créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL de votre profil ci-dessous." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " +"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " +"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " +"de votre profil ci-dessous." -#: ../actions/twitapifriendships.php:163 -#: actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Vous devez fournir 2 identifiants ou pseudos." -#: ../actions/profilesettings.php:48 -#: ../actions/register.php:169 -#: actions/profilesettings.php:81 -#: actions/register.php:183 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adresse de votre site Web, blogue, ou profil dans un autre site" -#: ../actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" -#: ../actions/emailsettings.php:130 -#: ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 -#: ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 -#: actions/imsettings.php:118 -#: actions/recoverpassword.php:39 -#: actions/smssettings.php:143 -#: actions/twittersettings.php:108 -#: actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 -#: actions/grouplogo.php:317 -#: actions/imsettings.php:214 -#: actions/recoverpassword.php:44 -#: actions/smssettings.php:236 -#: actions/twittersettings.php:302 +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." -#: ../actions/recoverpassword.php:276 -#: actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Réinitialisation inattendue du mot de passe." -#: ../index.php:57 -#: index.php:57 -#: actions/recoverpassword.php:202 +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Action inconnue" #: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 -#: actions/finishremotesubscribe.php:61 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Version inconnue du protocole OMB" -#: ../lib/util.php:269 -#: lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Sauf précision contraire, les contenus de ce site sont la propriété de leurs auteurs et sont disponibles sous" +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Sauf précision contraire, les contenus de ce site sont la propriété de leurs " +"auteurs et sont disponibles sous" -#: ../actions/confirmaddress.php:48 -#: actions/confirmaddress.php:48 +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "Type d'adresse non reconnu : %s" -#: ../actions/showstream.php:209 -#: actions/showstream.php:219 +#: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Désabonnement" -#: ../actions/postnotice.php:44 -#: ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 -#: actions/updateprofile.php:46 -#: actions/postnotice.php:48 -#: actions/updateprofile.php:49 +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Version de OMB non supportée" -#: ../actions/avatar.php:105 -#: actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Format de fichier d'image non supporté." -#: ../lib/settingsaction.php:100 -#: lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Suivi des statuts par SMS" -#: ../lib/settingsaction.php:103 -#: lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Suivi des statuts par messagerie instantanée" -#: ../actions/twitapistatuses.php:241 -#: actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" -#: ../actions/twitapistatuses.php:341 -#: actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" -#: ../actions/avatar.php:68 -#: actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 -#: actions/grouplogo.php:232 +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Transfert" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou moins carrée. Elle doit aussi être compatible avec la licence d'utilisation du site ; utilisez de préférence une image qui vous appartient et que vous voulez partager." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez " +"modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou " +"moins carrée. Elle doit aussi être compatible avec la licence d'utilisation " +"du site ; utilisez de préférence une image qui vous appartient et que vous " +"voulez partager." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" +msgstr "Ajouter une nouvelle image pour le profil" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Ajouter une nouvelle image pour le profil" +"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " +"service." -#: ../actions/invite.php:114 -#: actions/invite.php:121 -#: actions/invite.php:154 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce service." - -#: ../actions/register.php:159 -#: ../actions/register.php:162 -#: actions/register.php:173 -#: actions/register.php:176 +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Utilisé uniquement pour les mises à jour de statut, les avertissements, et la récupération de mot de passe" +msgstr "" +"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " +"la récupération de mot de passe" #: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 -#: actions/finishremotesubscribe.php:94 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." msgstr "L'utilisateur suivi n'existe pas." -#: ../actions/all.php:41 -#: ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 -#: ../actions/replies.php:41 -#: ../actions/showstream.php:44 -#: ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 -#: ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 -#: actions/all.php:41 -#: actions/avatarbynickname.php:48 -#: actions/foaf.php:47 -#: actions/replies.php:41 -#: actions/showfavorites.php:41 -#: actions/showstream.php:44 -#: actions/twitapiaccount.php:80 -#: actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 -#: actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 -#: lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 -#: actions/foaf.php:48 -#: actions/replies.php:80 -#: actions/showstream.php:107 -#: actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 -#: actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 -#: actions/twitapiusers.php:55 -#: actions/usergroups.php:99 -#: lib/galleryaction.php:67 -#: lib/twitterapi.php:626 +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." -#: ../actions/remotesubscribe.php:71 -#: actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Pseudo de l'utilisateur" -#: ../actions/twitapiusers.php:75 -#: actions/twitapiusers.php:80 +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." msgstr "Utilisateur non trouvé." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Quel est votre fuseau horaire habituel ?" -#: ../lib/util.php:1159 -#: lib/util.php:1293 -#: lib/noticeform.php:141 +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Quoi de neuf, %s ?" -#: ../actions/profilesettings.php:54 -#: ../actions/register.php:175 -#: actions/profilesettings.php:87 -#: actions/register.php:189 -#: actions/profilesettings.php:119 +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Indiquez votre emplacement, ex.: \"Ville, État (ou région), Pays\"" -#: ../actions/updateprofile.php:128 -#: actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Format d'image invalide pour '%s'" -#: ../actions/updateprofile.php:123 -#: actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Dimensions d'image invalides pour '%s'" -#: ../actions/deletenotice.php:63 -#: ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 -#: actions/deletenotice.php:79 -#: actions/block.php:148 -#: actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Oui" -#: ../actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:64 +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Vous utilisez déjà cet OpenID !" -#: ../actions/deletenotice.php:37 -#: actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." -#: ../actions/recoverpassword.php:31 -#: actions/recoverpassword.php:31 +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Votre session est déjà ouverte !" -#: ../actions/invite.php:81 -#: actions/invite.php:88 -#: actions/invite.php:120 +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Vous êtes déjà abonné à ces utilisateurs :" -#: ../actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Vous n'êtes pas ami(e) avec l'utilisateur spécifié." @@ -3354,58 +3094,66 @@ msgstr "Vous n'êtes pas ami(e) avec l'utilisateur spécifié." msgid "You can change your password here. Choose a good one!" msgstr "Vous pouvez modifier ici votre mot de passe. Choisissez-en un bon !" -#: ../actions/register.php:135 -#: actions/register.php:145 +#: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." msgstr "Créez un nouveau compte pour commencer à envoyer des messages." -#: ../actions/smssettings.php:28 -#: actions/smssettings.php:28 +#: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Vous pouvez recevoir des messages SMS par courriel en provenance de %%site.name%%." +msgstr "" +"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." +"name%%." -#: ../actions/openidsettings.php:86 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « Retirer »." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « " +"Retirer »." -#: ../actions/imsettings.php:28 -#: actions/imsettings.php:28 +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée](%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-dessous." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" +"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" +"dessous." -#: ../actions/profilesettings.php:27 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Vous pouvez mettre à jour les informations de votre profil pour qu'on en sache plus à votre sujet." +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Vous pouvez mettre à jour les informations de votre profil pour qu'on en " +"sache plus à votre sujet." -#: ../actions/finishremotesubscribe.php:31 -#: ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 -#: actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 -#: actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 -#: actions/remotesubscribe.php:35 +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Vous pouvez utiliser l'abonnement local." -#: ../actions/finishopenidlogin.php:33 -#: ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 -#: actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Vous devez accepter les termes de la licence pour créer un compte." -#: ../actions/updateprofile.php:63 -#: actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Vous n'avez pas envoyé ce profil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3417,7 +3165,8 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" -"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1$s.\n" +"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" +"$s.\n" "\n" "Écrivez à %2$s pour mettre à jour votre statut.\n" "\n" @@ -3426,223 +3175,217 @@ msgstr "" "Amicalement vôtre,\n" "%4$s" -#: ../actions/twitapistatuses.php:612 -#: actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." -#: ../actions/invite.php:31 -#: actions/invite.php:31 -#: actions/invite.php:39 +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" +msgstr "" +"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" -#: ../actions/invite.php:103 -#: actions/invite.php:110 -#: actions/invite.php:142 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Un avertissement vous sera envoyé quand vos invités auront accepté votre invitation et se seront inscrits sur le site. Merci de faire grandir notre communauté !" +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Un avertissement vous sera envoyé quand vos invités auront accepté votre " +"invitation et se seront inscrits sur le site. Merci de faire grandir notre " +"communauté !" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." -#: ../actions/openidlogin.php:67 -#: actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Votre URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." +msgstr "" +"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." -#: ../lib/util.php:943 -#: lib/util.php:992 -#: lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "il y a quelques secondes " -#: ../lib/util.php:955 -#: lib/util.php:1004 -#: lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: ../lib/util.php:951 -#: lib/util.php:1000 -#: lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: ../lib/util.php:947 -#: lib/util.php:996 -#: lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: ../lib/util.php:959 -#: lib/util.php:1008 -#: lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: ../lib/util.php:953 -#: lib/util.php:1002 -#: lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "il y a 1 jour" -#: ../lib/util.php:945 -#: lib/util.php:994 -#: lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "il y a 1 minute" -#: ../lib/util.php:957 -#: lib/util.php:1006 -#: lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "il y a 1 mois" -#: ../lib/util.php:961 -#: lib/util.php:1010 -#: lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "il y a environ 1 an" -#: ../lib/util.php:949 -#: lib/util.php:998 -#: lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "il y a 1 heure" -#: ../actions/showstream.php:423 -#: ../lib/stream.php:132 -#: actions/showstream.php:441 -#: lib/stream.php:99 +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 msgid "delete" msgstr "supprimer" -#: ../actions/noticesearch.php:130 -#: ../actions/showstream.php:408 -#: ../lib/stream.php:117 -#: actions/noticesearch.php:136 -#: actions/showstream.php:426 -#: lib/stream.php:84 -#: actions/noticesearch.php:187 +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." msgstr "en réponse à..." -#: ../actions/noticesearch.php:137 -#: ../actions/showstream.php:415 -#: ../lib/stream.php:124 -#: actions/noticesearch.php:143 -#: actions/showstream.php:433 -#: lib/stream.php:91 -#: actions/noticesearch.php:194 +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" msgstr "répondre" -#: ../actions/password.php:44 -#: actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "identique au mot de passe ci-dessus" -#: ../actions/twitapistatuses.php:755 -#: actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" -msgstr "" -"type de fichier non supporté" +msgstr "type de fichier non supporté" -#: ../lib/util.php:1309 -#: lib/util.php:1443 +#: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« Après" -#: actions/deletenotice.php:74 -#: actions/disfavor.php:43 -#: actions/emailsettings.php:127 -#: actions/favor.php:45 -#: actions/finishopenidlogin.php:33 -#: actions/imsettings.php:105 -#: actions/invite.php:46 -#: actions/newmessage.php:45 -#: actions/openidlogin.php:36 -#: actions/openidsettings.php:123 -#: actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 -#: actions/register.php:42 -#: actions/remotesubscribe.php:40 -#: actions/smssettings.php:124 -#: actions/subscribe.php:44 -#: actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 -#: actions/userauthorization.php:35 -#: actions/block.php:64 -#: actions/disfavor.php:74 -#: actions/favor.php:77 -#: actions/finishopenidlogin.php:38 -#: actions/invite.php:54 -#: actions/nudge.php:80 -#: actions/openidlogin.php:37 -#: actions/recoverpassword.php:316 -#: actions/subscribe.php:46 -#: actions/unblock.php:65 -#: actions/unsubscribe.php:43 +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." -#: actions/disfavor.php:55 -#: actions/disfavor.php:81 +#: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Ce statut n'est pas un favori !" -#: actions/disfavor.php:63 -#: actions/disfavor.php:87 +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Impossible de supprimer le favori." -#: actions/disfavor.php:72 -#: lib/favorform.php:140 +#: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" msgstr "Ajouter à mes favoris" -#: actions/emailsettings.php:92 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses favoris." - -#: actions/emailsettings.php:95 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " +"favoris." + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." -#: actions/favor.php:53 -#: actions/twitapifavorites.php:142 -#: actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Ce statut a déjà été ajouté à vos favoris !" -#: actions/favor.php:60 -#: actions/twitapifavorites.php:151 -#: classes/Command.php:132 -#: actions/favor.php:86 -#: actions/twitapifavorites.php:125 -#: classes/Command.php:152 +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Impossible de créer le favori." @@ -3650,39 +3393,36 @@ msgstr "Impossible de créer le favori." msgid "Disfavor" msgstr "Retirer des favoris" -#: actions/favoritesrss.php:60 -#: actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 -#: actions/showfavorites.php:77 +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Statuts favoris de %s" -#: actions/favoritesrss.php:64 -#: actions/favoritesrss.php:104 +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Fil des statuts favoris de %s" -#: actions/inbox.php:28 -#: actions/inbox.php:59 +#: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" msgstr "Boîte de réception de %s - page %d" -#: actions/inbox.php:30 -#: actions/inbox.php:62 +#: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" msgstr "Boîte de réception de %s" -#: actions/inbox.php:53 -#: actions/inbox.php:115 +#: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Cette boîte de réception regroupe les messages personnels qui vous sont envoyés." +msgstr "" +"Cette boîte de réception regroupe les messages personnels qui vous sont " +"envoyés." -#: actions/invite.php:178 -#: actions/invite.php:213 +#: actions/invite.php:178 actions/invite.php:213 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -3691,209 +3431,204 @@ msgstr "" "%1$s vous invite à vous inscrire à %2$s (%3$s).\n" "\n" -#: actions/login.php:104 -#: actions/login.php:235 -#: actions/openidlogin.php:108 +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " msgstr "Ouvrez automatiquement une session à l'avenir ;" -#: actions/login.php:122 -#: actions/login.php:264 +#: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre " -#: actions/login.php:126 -#: actions/login.php:268 +#: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " msgstr "Entrez votre identifiant et votre mot de passe." -#: actions/newmessage.php:58 -#: actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: actions/newmessage.php:65 -#: actions/newmessage.php:128 +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Aucun destinataire n'a été spécifié." -#: actions/newmessage.php:68 -#: actions/newmessage.php:113 -#: classes/Command.php:206 -#: actions/newmessage.php:131 -#: actions/newmessage.php:168 -#: classes/Command.php:237 +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." -#: actions/newmessage.php:71 -#: actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 -#: actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." -#: actions/newmessage.php:108 -#: actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Utilisateur inexistant" -#: actions/newmessage.php:117 -#: actions/newmessage.php:67 +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nouveau message" -#: actions/noticesearch.php:95 -#: actions/noticesearch.php:146 +#: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" msgstr "Message sans profil correspondant" -#: actions/openidsettings.php:28 -#: actions/openidsettings.php:70 +#: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "[OpenID](%%doc.openid%%) permet de vous connecter à de nombreux sites " -#: actions/openidsettings.php:46 -#: actions/openidsettings.php:96 +#: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " +msgstr "" +"Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez plus vous identifier !" +msgstr "" +"C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez " +"plus vous identifier !" -#: actions/openidsettings.php:87 -#: actions/openidsettings.php:143 +#: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " msgstr "Vous pouvez retirer un identifiant OpenID de votre compte " -#: actions/outbox.php:28 -#: actions/outbox.php:58 +#: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" msgstr "Boîte d'envoi de %s - page %d" -#: actions/outbox.php:30 -#: actions/outbox.php:61 +#: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Boîte d'envoi de %s" -#: actions/outbox.php:53 -#: actions/outbox.php:116 +#: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." +msgstr "" +"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." -#: actions/peoplesearch.php:28 -#: actions/peoplesearch.php:52 +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou par intérêts. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou " +"par intérêts. " -#: actions/profilesettings.php:27 -#: actions/profilesettings.php:69 +#: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " msgstr "Vous pouvez mettre votre profil à jour ici " -#: actions/profilesettings.php:115 -#: actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 -#: actions/userrss.php:76 -#: actions/avatarsettings.php:104 -#: actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 -#: actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 -#: actions/userrss.php:82 +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Utilisateur sans profil correspondant" -#: actions/recoverpassword.php:91 -#: actions/recoverpassword.php:97 +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " msgstr "Ce code de validation est périmé." -#: actions/recoverpassword.php:141 -#: actions/recoverpassword.php:152 +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" msgstr "Si vous avez oublié ou perdu votre " # Entrez un : masculin ou féminin ? De quoi s'agit-il ? Contexte ? -#: actions/recoverpassword.php:154 -#: actions/recoverpassword.php:158 +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " msgstr "Vous avez été identifié(e) avec succès. Entrez un " -#: actions/recoverpassword.php:169 -#: actions/recoverpassword.php:188 +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "Votre pseudo sur ce serveur, " -#: actions/recoverpassword.php:271 -#: actions/recoverpassword.php:304 +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " msgstr "Instructions pour récupérer votre mot de passe" -#: actions/recoverpassword.php:327 -#: actions/recoverpassword.php:361 +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " msgstr "Votre nouveau mot de passe a été enregistré avec succès." -#: actions/register.php:95 -#: actions/register.php:180 +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Votre mot de passe doit contenir au moins 6 caractères." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix s'offrent maintenant à vous :" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix " +"s'offrent maintenant à vous :" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " msgstr "(Vous recevrez sous peu un courriel avec " -#: actions/remotesubscribe.php:51 -#: actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Pour vous abonner, vous pouvez [login](%%action.login%%), " -#: actions/showfavorites.php:61 -#: actions/showfavorites.php:145 +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Fil des favoris de %s" -#: actions/showfavorites.php:84 -#: actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 -#: actions/twitapifavorites.php:59 +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossible d'afficher les favoris." -#: actions/showmessage.php:33 -#: actions/showmessage.php:81 +#: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." msgstr "Message introuvable." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "Ce message personnel ne peut être lu que par son expéditeur et son destinataire." +msgstr "" +"Ce message personnel ne peut être lu que par son expéditeur et son " +"destinataire." -#: actions/showmessage.php:61 -#: actions/showmessage.php:108 +#: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" msgstr "Message adressé à %1$s le %2$s" -#: actions/showmessage.php:66 -#: actions/showmessage.php:113 +#: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" @@ -3902,72 +3637,83 @@ msgstr "Message reçu de %1$s le %2$s" msgid "Send a message" msgstr "Envoyer un message" -#: actions/smssettings.php:312 -#: actions/smssettings.php:464 +#: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " msgstr "Votre fournisseur de téléphone mobile." -#: actions/twitapidirect_messages.php:76 -#: actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Messages envoyés à %s" -#: actions/twitapidirect_messages.php:77 -#: actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tous les messages envoyés à %s" -#: actions/twitapidirect_messages.php:81 -#: actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Messages envoyés" -#: actions/twitapidirect_messages.php:82 -#: actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tous les messages envoyés par %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Message sans texte !" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Destinataire non trouvé." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits comme amis." +msgstr "" +"Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits " +"comme amis." -#: actions/twitapifavorites.php:92 -#: actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoris de %s" -#: actions/twitapifavorites.php:95 -#: actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s statuts ont été ajoutés aux favoris de %s / %s." -#: actions/twitapifavorites.php:187 -#: lib/mail.php:275 -#: actions/twitapifavorites.php:164 -#: lib/mail.php:553 +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s a ajouté un de vos messages à ses favoris" -#: actions/twitapifavorites.php:188 -#: lib/mail.php:276 +#: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format msgid "" @@ -3978,21 +3724,24 @@ msgstr "" "\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " -#: actions/twittersettings.php:41 -#: actions/twittersettings.php:60 +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Préférences Twitter" -#: actions/twittersettings.php:48 -#: actions/twittersettings.php:105 +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Votre compte Twitter" -#: actions/twittersettings.php:56 -#: actions/twittersettings.php:113 +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Compte Twitter actuellement utilisé." @@ -4000,8 +3749,8 @@ msgstr "Compte Twitter actuellement utilisé." msgid "Twitter Username" msgstr "Identifiant Twitter" -#: actions/twittersettings.php:65 -#: actions/twittersettings.php:123 +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Veuillez éviter les espaces." @@ -4009,244 +3758,244 @@ msgstr "Veuillez éviter les espaces." msgid "Twitter Password" msgstr "Mot de passe Twitter" -#: actions/twittersettings.php:72 -#: actions/twittersettings.php:139 +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Envoyer automatiquement mes statuts dans Twitter." -#: actions/twittersettings.php:75 -#: actions/twittersettings.php:146 +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Envoyer mes réponses locales \"@\" dans Twitter." -#: actions/twittersettings.php:78 -#: actions/twittersettings.php:153 +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." +msgstr "" +"Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." -#: actions/twittersettings.php:122 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que des chiffres, des lettres minuscules ou majuscules, et des barres de soulignement (_). " +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que " +"des chiffres, des lettres minuscules ou majuscules, et des barres de " +"soulignement (_). " -#: actions/twittersettings.php:128 -#: actions/twittersettings.php:334 +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "La vérification de vos informations de Twitter a échoué !" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." -#: actions/twittersettings.php:151 -#: actions/twittersettings.php:170 -#: actions/twittersettings.php:348 -#: actions/twittersettings.php:368 +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "L'enregistrement de votre configuration Twitter a échoué !" -#: actions/twittersettings.php:174 -#: actions/twittersettings.php:376 +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuration Twitter enregistrée avec succès." -#: actions/twittersettings.php:192 -#: actions/twittersettings.php:395 +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Ce compte Twitter ne vous appartient pas." -#: actions/twittersettings.php:200 -#: actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Impossible de retirer cet utilisateur de Twitter." -#: actions/twittersettings.php:212 -#: actions/twittersettings.php:407 +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Le compte Twitter a été retiré." -#: actions/twittersettings.php:225 -#: actions/twittersettings.php:239 -#: actions/twittersettings.php:428 -#: actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Impossible d'enregistrer vos préférences Twitter." -#: actions/twittersettings.php:245 -#: actions/twittersettings.php:461 +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées avec succès." -#: actions/userauthorization.php:84 -#: actions/userauthorization.php:86 +#: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " msgstr "Veuillez vérifier ces informations pour vous assurer que " # we are missing context here -#: actions/userauthorization.php:324 -#: actions/userauthorization.php:340 +#: actions/userauthorization.php:324 actions/userauthorization.php:340 #, fuzzy msgid "The subscription has been authorized, but no " msgstr "L'abonnement a été autorisé, mais pas " # missing context -#: actions/userauthorization.php:334 -#: actions/userauthorization.php:351 +#: actions/userauthorization.php:334 actions/userauthorization.php:351 #, fuzzy msgid "The subscription has been rejected, but no " msgstr "L'abonnement a été refusé, mais pas " -#: classes/Channel.php:113 -#: classes/Channel.php:132 -#: classes/Channel.php:151 +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Résultats de la commande" -#: classes/Channel.php:148 -#: classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Commande complétée" -#: classes/Channel.php:158 -#: classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Échec de la commande" -#: classes/Command.php:39 -#: classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n'a pas encore été implémantée." -#: classes/Command.php:96 -#: classes/Command.php:113 +#: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" msgstr "Abonnements : %1$s\n" -#: classes/Command.php:125 -#: classes/Command.php:242 -#: classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Aucun statut récent pour cet utilisateur" -#: classes/Command.php:146 -#: classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Statut ajouté aux favoris." -#: classes/Command.php:166 -#: classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 -#: classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nom complet : %s" -#: classes/Command.php:172 -#: classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" -#: classes/Command.php:175 -#: classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" -#: classes/Command.php:178 -#: classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "À propos : %s" -#: classes/Command.php:200 -#: classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." -#: classes/Command.php:214 -#: classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Votre message a été envoyé à %s" -#: classes/Command.php:216 -#: classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Une erreur est survenue pendant l'envoi de votre message." -#: classes/Command.php:263 -#: classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Indiquez le nom de l'utilisateur auquel vous souhaitez vous abonner " # could it be plural? -#: classes/Command.php:270 -#: classes/Command.php:307 -#, fuzzy +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Abonné à %s" -#: classes/Command.php:288 -#: classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Indiquez le nom de l'utilisateur duquel vous souhaitez vous désabonner" -#: classes/Command.php:295 -#: classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Désabonné de %s" -#: classes/Command.php:310 -#: classes/Command.php:330 -#: classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Cette commande n'a pas encore été implémantée." -#: classes/Command.php:313 -#: classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Avertissements désactivés." -#: classes/Command.php:315 -#: classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." -#: classes/Command.php:333 -#: classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Avertissements activés." -#: classes/Command.php:335 -#: classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Impossible d'activer les avertissements." -#: classes/Command.php:344 -#: classes/Command.php:392 +#: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" msgstr "Commandes : \n" -#: classes/Message.php:53 -#: classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Impossible d'insérer le message." -#: classes/Message.php:63 -#: classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." @@ -4254,8 +4003,7 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI." msgid "User without matching profile in system." msgstr "Utilisateur sans profil correspondant dans le système." -#: lib/mail.php:147 -#: lib/mail.php:289 +#: lib/mail.php:147 lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4264,14 +4012,12 @@ msgstr "" "Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n" "\n" -#: lib/mail.php:249 -#: lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nouveau message personnel de %s" -#: lib/mail.php:253 -#: lib/mail.php:512 +#: lib/mail.php:253 lib/mail.php:512 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4280,75 +4026,73 @@ msgstr "" "%1$s (%2$s) vous a envoyé un message personnel :\n" "\n" -#: lib/mailbox.php:43 -#: lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "L'accès à cette boîte de réception est réservé à son utilisateur." -#: lib/openid.php:195 -#: lib/openid.php:203 +#: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " msgstr "Ce formulaire devrait être soumis automatiquement." -#: lib/personal.php:65 -#: lib/personalgroupnav.php:113 +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoris" -#: lib/personal.php:66 -#: lib/personalgroupnav.php:114 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Statuts favoris de %s" -#: lib/personal.php:66 -#: lib/personalgroupnav.php:114 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" -#: lib/personal.php:75 -#: lib/personalgroupnav.php:123 +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Boîte de réception" -#: lib/personal.php:76 -#: lib/personalgroupnav.php:124 +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Vos messages reçus" -#: lib/personal.php:80 -#: lib/personalgroupnav.php:128 +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Boîte d'envoi" -#: lib/personal.php:81 -#: lib/personalgroupnav.php:129 +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Vos messages envoyés" -#: lib/settingsaction.php:99 -#: lib/connectsettingsaction.php:110 +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" msgstr "Twitter" -#: lib/settingsaction.php:100 -#: lib/connectsettingsaction.php:111 +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" msgstr "Configuration Twitter" -#: lib/util.php:1718 -#: lib/messageform.php:139 -#: lib/noticelist.php:422 +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "À " -#: scripts/maildaemon.php:45 -#: scripts/maildaemon.php:48 +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Impossible de déchiffrer ce message." -#: actions/all.php:63 -#: actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s et ses amis - page %d" @@ -4357,92 +4101,85 @@ msgstr "%s et ses amis - page %d" msgid "You can upload your personal avatar." msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." -#: actions/avatarsettings.php:117 -#: actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Paramètres de l'avatar" -#: actions/avatarsettings.php:124 -#: actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 -#: actions/grouplogo.php:258 +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Image originale" -#: actions/avatarsettings.php:139 -#: actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 -#: actions/grouplogo.php:270 +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Aperçu" -#: actions/avatarsettings.php:225 -#: actions/grouplogo.php:284 +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Recadrer" -#: actions/avatarsettings.php:248 -#: actions/deletenotice.php:133 -#: actions/emailsettings.php:224 -#: actions/grouplogo.php:307 -#: actions/imsettings.php:200 -#: actions/login.php:102 -#: actions/newmessage.php:100 -#: actions/newnotice.php:96 -#: actions/openidsettings.php:188 -#: actions/othersettings.php:136 -#: actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 -#: actions/register.php:113 -#: actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 -#: actions/subedit.php:38 -#: actions/twittersettings.php:290 +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 #: actions/userauthorization.php:39 msgid "There was a problem with your session token. " msgstr "Un problème est survenu avec vos informations de session. " -#: actions/avatarsettings.php:303 -#: actions/grouplogo.php:360 +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: actions/avatarsettings.php:327 -#: actions/grouplogo.php:384 +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Données perdues." -#: actions/avatarsettings.php:334 -#: actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Fichier perdu." -#: actions/avatarsettings.php:349 -#: actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 -#: actions/grouplogo.php:440 -#: classes/User_group.php:129 -#: classes/User_group.php:161 +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "" -"Type de fichier inconnu" +msgstr "Type de fichier inconnu" -#: actions/block.php:69 -#: actions/subedit.php:46 -#: actions/unblock.php:70 +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Aucun profil n'a été spécifié." -#: actions/block.php:74 -#: actions/subedit.php:53 -#: actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Aucun profil ne correspond à cet identifiant." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquer cet utilisateur" @@ -4450,11 +4187,11 @@ msgstr "Bloquer cet utilisateur" msgid "Are you sure you want to block this user? " msgstr "Êtes-vous sûr(e) de bloquer cet utilisateur ?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Vous avez déjà bloqué cet utilisateur." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Impossible d'enregistrer les informations de blocage." @@ -4471,81 +4208,85 @@ msgstr "Ce statut va être définitivement supprimé. " msgid "Add to favorites" msgstr "Ajouter aux favoris" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Modifier le groupe %s" -#: actions/editgroup.php:66 -#: actions/groupbyid.php:72 -#: actions/grouplogo.php:66 -#: actions/joingroup.php:60 -#: actions/newgroup.php:65 -#: actions/showgroup.php:100 +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent " +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent " -#: actions/editgroup.php:71 -#: actions/grouplogo.php:71 -#: actions/newgroup.php:70 +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Vous devez ouvrir une session pour créer un groupe." -#: actions/editgroup.php:87 -#: actions/grouplogo.php:87 -#: actions/groupmembers.php:76 -#: actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Aucun pseudo" -#: actions/editgroup.php:99 -#: actions/groupbyid.php:88 -#: actions/grouplogo.php:100 -#: actions/groupmembers.php:83 -#: actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Aucun groupe trouvé" -#: actions/editgroup.php:106 -#: actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: actions/editgroup.php:179 -#: actions/newgroup.php:130 -#: actions/register.php:156 +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " msgstr "Le pseudo ne peut contenir que des caractères minuscules " -#: actions/editgroup.php:198 -#: actions/newgroup.php:149 +#: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "la description est trop longue (140 caractères maximum)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Vos options ont été enregistrées." -#: actions/emailsettings.php:107 -#: actions/imsettings.php:108 +#: actions/emailsettings.php:107 actions/imsettings.php:108 #, php-format msgid "Awaiting confirmation on this address. " msgstr "En attente de confirmation de cette adresse." # using the infinitive form here? -#: actions/emailsettings.php:139 -#: actions/smssettings.php:150 +#: actions/emailsettings.php:139 actions/smssettings.php:150 msgid "Make a new email address for posting to; " msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " @@ -4553,7 +4294,8 @@ msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " msgid "Send me email when someone " msgstr "Envoyez-moi un courriel quand quelqu'un " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." @@ -4561,82 +4303,90 @@ msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " -msgstr "" -"Cette adresse courriel appartient déjà " +msgstr "Cette adresse courriel appartient déjà " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " msgstr "Un code de confirmation a été envoyé à l'adresse courriel indiquée." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Erreur du serveur - impossible d'accéder à cet utilisateur !" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "Si vous souhaitez que l'application %s soit mise à jour automatiquement " +msgstr "" +"Si vous souhaitez que l'application %s soit mise à jour automatiquement " -#: actions/facebookhome.php:213 -#: actions/facebooksettings.php:137 +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format msgid "Allow %s to update my Facebook status" msgstr "Autoriser %s à mettre à jour mon statut dans Facebook" # context??? -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Sauter" # i originally put 'aucun statut!' here, but the original translation seems better -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Statut sans contenu!" -#: actions/facebookhome.php:295 -#: lib/action.php:870 -#: lib/facebookaction.php:399 +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Pagination" -#: actions/facebookhome.php:304 -#: lib/action.php:879 -#: lib/facebookaction.php:408 +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Après" -#: actions/facebookhome.php:312 -#: lib/action.php:887 -#: lib/facebookaction.php:416 +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Avant" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Merci d'inviter vos amis à utiliser %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Vous avez reçu une invitation à %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invitez vos amis dans %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amis déjà inscrits à %s :" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Envoyer des invitations" @@ -4647,7 +4397,9 @@ msgstr "Impossible de retirer l'utilisateur Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Un problème est survenu lors de l'enregistrement de vos préférences de synchronisation !" +msgstr "" +"Un problème est survenu lors de l'enregistrement de vos préférences de " +"synchronisation !" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4678,14 +4430,14 @@ msgstr "Si vous souhaitez une mise à jour automatique de %s " msgid "Sync preferences" msgstr "Préférences de synchronisation" -#: actions/favor.php:94 -#: lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Retirer ce favori" -#: actions/favorited.php:65 -#: lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Statuts populaires" @@ -4698,9 +4450,9 @@ msgstr "Statuts populaires - page %d" msgid "The most popular notices on the site right now." msgstr "Statuts les plus populaires sur le site en ce moment." -#: actions/featured.php:69 -#: lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Utilisateurs en vedette" @@ -4714,16 +4466,17 @@ msgstr "Utilisateurs en vedette - page %d" msgid "A selection of some of the great users on %s" msgstr "Les utilisateurs à ne pas manquer dans %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Cet utilisateur vous a empêché de vous inscrire." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Aucun identifiant" -#: actions/grouplogo.php:138 -#: actions/grouplogo.php:191 +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo du groupe" @@ -4731,16 +4484,17 @@ msgstr "Logo du groupe" msgid "You can upload a logo image for your group." msgstr "Choisissez un logo pour votre groupe." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo mis à jour." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "La mise à jour du logo a échoué." -#: actions/groupmembers.php:93 -#: lib/groupnav.php:91 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format msgid "%s group members" msgstr "Membres du groupe %s" @@ -4754,10 +4508,9 @@ msgstr "Membres du groupe %s - page %d" msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groups.php:62 -#: actions/showstream.php:518 -#: lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groupes" @@ -4768,23 +4521,25 @@ msgstr "Groupes - page %d" # missing context #: actions/groups.php:90 -#, fuzzy #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "Les groupes %%%%site.name%%%% vous permettent d'échanger avec " -#: actions/groups.php:106 -#: actions/usergroups.php:124 -#: lib/groupeditform.php:123 +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Créer un nouveau groupe" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par intérêts. Séparez les termes de recherches par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par " +"intérêts. Séparez les termes de recherches par des espaces. Ils doivent " +"contenir au moins 3 caractères." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Rechercher des groupes" @@ -4796,75 +4551,82 @@ msgstr "Vous pouvez publier et lire les statuts via " # missing context #: actions/imsettings.php:120 -#, fuzzy #, php-format msgid "Jabber or GTalk address, " msgstr "Adresse Jabber ou GTalk, " #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " -msgstr "" -"Envoyez-moi les réponses par Jabber/GTalk" +msgstr "Envoyez-moi les réponses par Jabber/GTalk" #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " msgstr "Un code de confirmation a été envoyé " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Vous devez ouvrir une session pour rejoindre un groupe." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Vous êtes déjà membre de ce groupe " -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s a rejoint le groupe %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent." +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Aucun groupe trouvé." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Vous n'êtes pas membre de ce groupe." #: actions/leavegroup.php:100 msgid "You may not leave a group while you are its administrator." -msgstr "Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." +msgstr "" +"Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Aucun enregistrement à ce groupe n'a été trouvé." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Impossible de retirer l'utilisateur %s du groupe %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s a quitté le groupe %s" -#: actions/login.php:225 -#: lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Ouverture de session" @@ -4876,21 +4638,21 @@ msgstr "Aucun statut " msgid "New group" msgstr "Nouveau groupe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." -msgstr "" -"Impossible de créer le groupe." +msgstr "Impossible de créer le groupe." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Impossible d'établir l'inscription au groupe." -#: actions/newmessage.php:119 -#: actions/newnotice.php:132 +#: actions/newmessage.php:119 actions/newnotice.php:132 msgid "That's too long. " msgstr "C'est trop long." @@ -4898,19 +4660,23 @@ msgstr "C'est trop long." msgid "Don't send a message to yourself; " msgstr "N'envoyez pas de message à vous-même ; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" -msgstr "" -"Statut publié" +msgstr "Statut publié" -#: actions/newnotice.php:200 -#: classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erreur Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son adresse courriel." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " +"adresse courriel." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4920,7 +4686,7 @@ msgstr "Clin d'œil envoyé" msgid "Nudge sent!" msgstr "Clin d'œil envoyé !" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Connexion OpenID" @@ -4944,31 +4710,32 @@ msgstr "Réduction automatique des adresses Web (URL)" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Sélectionnez un service de réduction d'URL." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "" -"Le service de réduction d'URL est trop long (50 caractères maximum)." +msgstr "Le service de réduction d'URL est trop long (50 caractères maximum)." #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Modifier votre mot de passe." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Modification du mot de passe" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" -msgstr "" -"Ce marquage est invalide : %s" +msgstr "Ce marquage est invalide : %s" # can it be plural? -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Utilisateurs marqués &s - page %d" @@ -4979,13 +4746,16 @@ msgstr "Utilisateurs marqués &s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Les utilisateurs suivants se sont marqués \"%s\" :" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Information de profil" -#: actions/profilesettings.php:124 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" # missing context #: actions/profilesettings.php:144 @@ -4993,30 +4763,37 @@ msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des es msgid "Automatically subscribe to whoever " msgstr "M'abonner automatiquement à quiconque " -#: actions/profilesettings.php:229 -#: actions/tagother.php:176 +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Marquage invalide : \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Impossible d'enregistrer les marquages. " -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Flux public - page %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." -msgstr "" -"Impossible de récupérer le flux public." +msgstr "Impossible de récupérer le flux public." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " #: actions/publictagcloud.php:57 #, fuzzy @@ -5028,13 +4805,14 @@ msgstr "Marquages publics" msgid "These are most popular recent tags on %s " msgstr "Derniers marquages les plus populaires dans %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 #, fuzzy msgid "Tag cloud" msgstr "Marquages " -#: actions/register.php:139 -#: actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Désolé ! Seules les personnes invitées peuvent s'inscrire." @@ -5057,8 +4835,7 @@ msgid "1-64 lowercase letters or numbers, " msgstr "1 à 64 lettres minuscules ou chiffres, " # missing context -#: actions/register.php:382 -#: actions/register.php:386 +#: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " msgstr "Utilisé seulement pour les mises à jour, nouvelles du site, " @@ -5098,12 +4875,12 @@ msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. " msgid "(You should receive a message by email " msgstr "(Vous recevrez bientôt un courriel " -#: actions/remotesubscribe.php:166 -#: actions/remotesubscribe.php:171 +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Réponses à %s - page %d" @@ -5113,68 +4890,82 @@ msgstr "Réponses à %s - page %d" msgid "%s favorite notices, page %d" msgstr "Statuts favoris de %s - page %d" -#: actions/showgroup.php:77 -#: lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Groupe %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Groupe %s - page %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profil du groupe" -#: actions/showgroup.php:251 -#: actions/showstream.php:278 -#: actions/tagother.php:119 -#: lib/grouplist.php:134 -#: lib/profilelist.php:133 +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" -#: actions/showgroup.php:262 -#: actions/showstream.php:289 -#: actions/tagother.php:129 -#: lib/grouplist.php:145 -#: lib/profilelist.php:144 +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Note" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Fil des statuts du groupe %s" -#: actions/showgroup.php:357 -#: lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:363 -#: actions/showstream.php:413 -#: actions/showstream.php:442 -#: actions/showstream.php:524 -#: lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tous les membres" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" # is there another part to this sentence? #: actions/showmessage.php:98 @@ -5182,7 +4973,7 @@ msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http: msgid "Only the sender and recipient " msgstr "Expéditeur et destinataire seulement " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s - page %d" @@ -5193,40 +4984,49 @@ msgstr "%s - page %d" msgid "'s profile" msgstr " - Profil" -#: actions/showstream.php:236 -#: actions/tagother.php:77 +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profil de l'utilisateur" -#: actions/showstream.php:240 -#: actions/tagother.php:81 +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Photo" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Actions de l'utilisateur" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Envoyer un message à cet utilisateur" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Message " -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tous les abonnés" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tous les groupes" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" # missing context #: actions/smssettings.php:128 @@ -5242,9 +5042,10 @@ msgstr "M'envoyer les statuts par SMS ; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " +msgstr "" +"Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Fournisseur de téléphonie mobile" @@ -5258,8 +5059,7 @@ msgstr "Impossible d'enregistrer l'abonnement." #: actions/subscribe.php:55 msgid "Not a local user." -msgstr "" -"Ceci n'est pas un utilisateur local." +msgstr "Ceci n'est pas un utilisateur local." # missing context? #: actions/subscribe.php:69 @@ -5285,7 +5085,6 @@ msgstr "Ces personnes suivent " # missing context #: actions/subscribers.php:67 -#, fuzzy #, php-format msgid "These are the people who " msgstr "Ces personnes sont ceux qui " @@ -5308,22 +5107,21 @@ msgstr "Voici les personnes dont les messages " # missing context #: actions/subscriptions.php:69 -#, fuzzy #, php-format msgid "These are the people whose " msgstr "Voici les personnes dont " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" -msgstr "" -"Statuts marqués %s - page %d" +msgstr "Statuts marqués %s - page %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messages marqués \"%s\", à partir du plus récent" @@ -5345,46 +5143,53 @@ msgstr "Marquage %s" msgid "Tag user" msgstr "Marquer l'utilisateur" -#: actions/tagother.php:149 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." -#: actions/tagother.php:191 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) ou qui sont abonnées à vous." - -#: actions/tagother.php:198 -msgid "Could not save tags." +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Impossible d'enregistrer les marquages." +"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " +"ou qui sont abonnées à vous." -#: actions/tagother.php:233 +#: actions/tagother.php:198 actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Impossible d'enregistrer les marquages." + +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +msgstr "" +"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." #: actions/tagrss.php:35 msgid "No such tag." msgstr "Aucun marquage trouvé." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" -msgstr "" -"Microblog marqué avec %s" +msgstr "Microblog marqué avec %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Le blocage de l'utilisateur a échoué." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Le déblocage de l'utilisateur a échoué." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trouvé." @@ -5392,15 +5197,16 @@ msgstr "Non trouvé." msgid "Add your Twitter account to automatically send " msgstr "Ajoutez votre compte Twitter pour envoyer automatiquement " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nom d'utilisateur Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Mot de passe Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amis de Twitter" @@ -5413,153 +5219,162 @@ msgstr "L'identifiant doit contenit seulement des chiffres, " msgid "Unable to retrieve account information " msgstr "Impossible de récupérer les informations du compte " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Erreur lors de l'annulation du blocage." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Aucune identité de profil dans la requête." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Aucun profil avec cet identifiant." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Désabonné" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Groupes de %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Groupes de %s - page %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." -#: classes/Notice.php:109 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de publier des statuts dans ce site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Ajouter un avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Autres " -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Autres options " -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primaire du site" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Compte" # missing context -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Modifier votre courriel, avatar, mot de passe, profil " -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Connexion OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "À l'aide !" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vues locales" # missing context? -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Notice de la page" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:602 -#: lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tous" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licence." -#: lib/blockform.php:123 -#: lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Bloquer cet utilisateur " -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquer" -#: lib/disfavorform.php:114 -#: lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Retirer des favoris" @@ -5569,19 +5384,19 @@ msgid "To use the %s Facebook Application you need to login " msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" # missing context? -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " un nouveau compte." -#: lib/facebookaction.php:557 -#: lib/mailbox.php:214 -#: lib/noticelist.php:354 +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publié" -#: lib/favorform.php:114 -#: lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "Ajouter aux favoris" @@ -5599,53 +5414,58 @@ msgstr "Filtrer les étiquettes" msgid "All" msgstr "Tous" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Marquer" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Choissez un marquage pour réduire la liste" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Aller" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL du site Web ou blogue du groupe ou sujet " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Description du groupe ou du sujet (140 caractères maximum)" -#: lib/groupeditform.php:158 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" -#: lib/groupnav.php:84 -#: lib/searchgroupnav.php:84 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Groupe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Administrer" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Modifier les propriétés du groupe %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Ajouter ou modifier le logo de %s" @@ -5677,11 +5497,11 @@ msgstr "Rejoindre" msgid "Leave" msgstr "Quitter" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Ouvrez une session avec un identifiant et un mot de passe" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Créer un nouveau compte" @@ -5694,35 +5514,36 @@ msgstr "Ouvrir une session ou s'enregistrer avec OpenID" msgid "" "Hey, %s.\n" "\n" -msgstr "Bonjour, %s.\n" +msgstr "" +"Bonjour, %s.\n" "\n" # missing context #: lib/mail.php:236 -#, fuzzy #, php-format msgid "%1$s is now listening to " msgstr "%1$s suit actuellement " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Emplacement : %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Site Web : %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" -msgstr "Bio : %s\n" +msgstr "" +"Bio : %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Vous avez reçu un clin d'œil de %s" @@ -5737,8 +5558,8 @@ msgstr "%1$s (%2$s) se demande ce que vous devenez " msgid "%1$s just added your notice from %2$s" msgstr "%1$s a ajouté votre statut depuis %2$s" -#: lib/mailbox.php:229 -#: lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "De" @@ -5746,28 +5567,31 @@ msgstr "De" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envoyer un message direct" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Envoyer un statut" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caractères restants" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en réponse à" -#: lib/noticelist.php:447 -#: lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Répondre à ce statut" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Répondre" @@ -5775,8 +5599,9 @@ msgstr "Répondre" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/noticelist.php:471 -#: lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Supprimer ce statut" @@ -5784,7 +5609,8 @@ msgstr "Supprimer ce statut" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Supprimer" @@ -5805,31 +5631,31 @@ msgstr "Envoyer un clin d'œil à cet utilisateur" msgid "Tags in %s's notices" msgstr "Marquages des statuts de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(aucun)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Groupes d'utilisateurs" -#: lib/publicgroupnav.php:82 -#: lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Marquages récents" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "En vedette" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" -msgstr "" -"Populaires" +msgstr "Populaires" #: lib/searchgroupnav.php:82 msgid "Notice" @@ -5843,32 +5669,33 @@ msgstr "Rechercher des groupes sur ce site" msgid "Untitled section" msgstr "Section sans titre" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Abonnements de %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Abonnés de %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Groupes de %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Cet utilisateur vous a bloqué." -#: lib/subscribeform.php:115 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "S'abonner à cet utilisateur" @@ -5880,24 +5707,2102 @@ msgstr "Aucun" msgid "Top posters" msgstr "Utilisateurs les plus actifs" -#: lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Débloquer" -#: lib/unsubscribeform.php:113 -#: lib/unsubscribeform.php:137 +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flux des amis de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flux des amis de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Flux des amis de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s et ses amis" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar mis à jour." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Choisissez un logo pour votre groupe." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Micro-blogging par %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Une erreur est survenue pendant l'envoi de votre message." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Flux de recherche pour « %s »" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Fil du flux public" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Fil du flux public" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fil du flux public" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +# à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Créer" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Profil du groupe" + +# missing context +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " - Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Boîte d'envoi de %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Paramètres du profil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Utilisateur inexistant" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Rechercher des personnes ou du texte" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Clin d'œil" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s suit maintenant vos statuts dans %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialement,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Rechercher" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Document non trouvé. " + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profil de l'utilisateur" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s et ses amis - page %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Le déblocage de l'utilisateur a échoué." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Code de confirmation" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Impossible de supprimer ce statut." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Marquage invalide : \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Pseudo déjà utilisé. Essayez-en un autre." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossible de créer le favori." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nouveau statut" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nouveau statut" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Pseudo invalide." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Aucun profil n'a été spécifié." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Cet utilisateur vous a bloqué." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquer cet utilisateur" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Vous devez ouvrir une session pour créer un groupe." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groupes" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossible de mettre à jour l'utilisateur." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "L'enregistrement de votre configuration Twitter a échoué !" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Préférences de synchronisation enregistrées." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrer" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Aucun résultat " + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Cet utilisateur vous a bloqué." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Message " + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Impossible d'enregistrer le profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Paramètres du profil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Récupération de mot de passe demandée" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erreur dans le code de confirmation." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "S'abonner à cet utilisateur" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Statuts favoris de %s - page %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Administrer" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ceci n'est pas un utilisateur local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Statuts marqués avec %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +# missing context +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s suit actuellement " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Flux des statuts de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Ce statut a déjà été ajouté à vos favoris !" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Ce statut n'est pas un favori !" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossible de récupérer le flux public." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Aucun destinataire n'a été spécifié." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Aucun statut n'a été trouvé." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Réponses à %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licence." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Abonnements de %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Paramètres du profil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problème lors de l'enregistrement du statut." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message adressé à %1$s le %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Profil de l'utilisateur" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Transfert" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modifier votre mot de passe" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connecter" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Rechercher" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Ouvrir une session" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquer" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquer cet utilisateur" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Ajouter ou modifier le logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Aucun contenu !" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Utilisateur" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Rechercher" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "L'adresse du site personnel n'est pas un URL valide. " + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Aucun marquage trouvé." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messages envoyés à %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Vous êtes déjà membre de ce groupe " + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossible de retirer l'utilisateur %s du groupe %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Groupes de %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groupes de %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Actions du groupe" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format de fichier d'image non supporté." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utilisateur suivi n'existe pas." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorisé." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Impossible de convertir les jetons de requête en jetons d'accès" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Version inconnue du protocole OMB" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Statut non trouvé. " + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Fichier perdu." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +# missing context +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Cette page n'est pas disponible dans " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Statuts correspondant au(x) terme(s) \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Décrivez vos intérêts en 140 caractères" + +# missing context +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Décrivez qui vous êtes et vos " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La bio est trop longue (140 caractères maximum)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de profil invalide (aucun document YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossible d'obtenir le jeton de requête." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Fil des statuts du groupe %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message adressé à %1$s le %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Groupe %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Statut publié" + +# missing context +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Cette page n'est pas disponible dans " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Flux des statuts de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossible de lire l'URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Format d'image invalide pour '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossible de rediriger vers le serveur : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licence du logiciel StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Clin d'œil envoyé" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Répondre à ce statut" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problème lors de l'enregistrement du statut." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Aucun code de confirmation." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Ouvrir une session" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Sélectionnez un fournisseur de téléphone mobile" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Flux des statuts de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s a ajouté un de vos messages à ses favoris" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "de" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Impossible de supprimer le favori." + +# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n +# Nouveau message\n +# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n +# à "Supprimer l'avis" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Supprimer ce statut" + #~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, version " -#~ "%s, available under the [GNU Affero General Public License] (http://www." -#~ "fsf.org/licensing/licenses/agpl-3.0.html)." +#~ "It runs the [StatusNet](http://status.net/) microblogging software, " +#~ "version %s, available under the [GNU Affero General Public License] " +#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #~ msgstr "" #~ "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " #~ "version %s, disponible sous la licence [GNU Affero General Public " diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index c13acd1a8088805d666adea78ff508fef1f2e56b..bcf01b04df49748b292b9ff0240204a4627b9478 100644 GIT binary patch delta 32965 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 b\n" "Language-Team: Galician \n" @@ -16,53 +16,50 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#: ../actions/noticesearchrss.php:64 -#: actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:61 +#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Buscar \"%s\" na Liña de tempo" -#: ../actions/finishopenidlogin.php:82 -#: ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 -#: actions/register.php:205 -#: actions/register.php:232 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." -#: ../actions/showstream.php:400 -#: ../lib/stream.php:109 -#: actions/showstream.php:418 -#: lib/mailbox.php:164 -#: lib/stream.php:76 -#: lib/facebookaction.php:195 -#: lib/noticelist.php:160 +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr " dende " -#: ../actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:341 +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Chíos que respostan a %2$s" -#: ../actions/invite.php:168 -#: actions/invite.php:176 +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s invitoute a unirse a él en %2$s." -#: ../actions/invite.php:170 -#: actions/invite.php:178 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" "\n" -"You can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" "\n" "%1$s said:\n" "\n" @@ -72,19 +69,24 @@ msgid "" "\n" "%5$s\n" "\n" -"If you'd like to try the service, click on the link below to accept the invitation.\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" msgstr "" "%1$s invitoute a unirte a el en %2$s (%3$s).\n" "\n" -"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa xente que coñeces e xente na que tes interese.\n" +"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " +"xente que coñeces e xente na que tes interese.\n" "\n" -"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña con xente que te coñece. Tamén está moi ben para coñecer xente que comparte os mesmos intereses..\n" +"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " +"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " +"os mesmos intereses..\n" "\n" "%1$s dixo:\n" "\n" @@ -102,16 +104,13 @@ msgstr "" "\n" "Saudiños, %2$s\n" -#: ../lib/mail.php:124 -#: lib/mail.php:124 -#: lib/mail.php:126 -#: lib/mail.php:115 +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está a escoitar os teus chíos %2$s." #: ../lib/mail.php:126 -#: lib/mail.php:117 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -128,2946 +127,2935 @@ msgstr "" "Atentamente todo seu,\n" "%4$s.\n" -#: ../actions/twitapistatuses.php:482 -#: actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:344 +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: ../actions/shownotice.php:45 -#: actions/shownotice.php:45 -#: actions/shownotice.php:73 +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" -#: ../actions/invite.php:84 -#: ../actions/invite.php:92 -#: actions/invite.php:91 -#: actions/invite.php:99 +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: ../actions/publicrss.php:62 -#: actions/publicrss.php:48 +#: ../actions/publicrss.php:62 actions/publicrss.php:48 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Fio Público" -#: ../actions/all.php:47 -#: ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 -#: ../lib/stream.php:51 -#: actions/all.php:47 -#: actions/allrss.php:60 -#: actions/twitapistatuses.php:155 -#: lib/personal.php:51 -#: actions/twitapistatuses.php:123 +#: ../actions/all.php:47 ../actions/allrss.php:60 +#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 +#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 +#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 +#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#: ../actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:31 +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: ../lib/mail.php:206 -#: lib/mail.php:212 -#: lib/mail.php:207 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Estado de %s" -#: ../actions/twitapistatuses.php:338 -#: actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:195 +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" -#: ../actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:34 +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s chíos de calquera!" -#: ../actions/register.php:213 -#: actions/register.php:254 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de como confirmar a túa dirección de correo.)" +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " +"como confirmar a túa dirección de correo.)" -#: ../lib/util.php:257 -#: lib/util.php:273 -#: lib/util.php:290 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 -#: lib/util.php:275 -#: lib/util.php:292 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: ../lib/util.php:274 -#: lib/util.php:290 -#: lib/util.php:307 +#: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." msgstr ". Os contribuíntes deben atribuiselles polo nome completo ou apodo." -#: ../actions/finishopenidlogin.php:73 -#: ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 -#: actions/profilesettings.php:76 -#: actions/profilesettings.php:78 +#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 +#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 +#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" -#: ../actions/register.php:152 -#: actions/register.php:166 -#: actions/register.php:193 +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "De 1 a 64 letras minúsculas ou números, nin espazos nin signos de puntuación. Requerido." +msgstr "" +"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " +"puntuación. Requerido." -#: ../actions/password.php:42 -#: actions/profilesettings.php:181 -#: actions/profilesettings.php:198 +#: ../actions/password.php:42 actions/profilesettings.php:181 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ou máis caracteres" -#: ../actions/recoverpassword.php:180 -#: actions/recoverpassword.php:186 +#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ou máis caracteres, non o esquenzas!" -#: ../actions/register.php:154 -#: actions/register.php:168 -#: actions/register.php:195 +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ou máis caracteres. Requerido." -#: ../actions/imsettings.php:197 -#: actions/imsettings.php:205 -#: actions/imsettings.php:210 +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." -#: ../actions/emailsettings.php:213 -#: actions/emailsettings.php:231 -#: actions/emailsettings.php:235 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche un código de confirmación á dirección de correo que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche un código de confirmación á dirección de correo que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." -#: ../actions/smssettings.php:216 -#: actions/smssettings.php:224 -#: actions/smssettings.php:226 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." -#: ../actions/twitapiaccount.php:49 -#: ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 -#: ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 -#: ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 -#: actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 -#: actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 -#: actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 -#: actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 -#: actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 -#: actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 -#: actions/twitapiaccount.php:35 -#: actions/twitapidirect_messages.php:107 -#: actions/twitapifavorites.php:83 -#: actions/twitapifavorites.php:99 -#: actions/twitapifriendships.php:117 -#: actions/twitapihelp.php:42 -#: actions/twitapistatuses.php:77 -#: actions/twitapistatuses.php:144 -#: actions/twitapistatuses.php:224 -#: actions/twitapistatuses.php:234 -#: actions/twitapistatuses.php:386 -#: actions/twitapistatuses.php:395 -#: actions/twitapistatuses.php:421 -#: actions/twitapiusers.php:30 +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Método da API non atopado" -#: ../actions/twitapiaccount.php:57 -#: ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 -#: ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 -#: ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 #: ../actions/twitapidirect_messages.php:49 #: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 -#: ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 -#: ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 -#: ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 -#: ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 -#: actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 -#: actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 -#: actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 -#: actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 -#: actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 -#: actions/twitapiaccount.php:42 -#: actions/twitapiaccount.php:92 -#: actions/twitapiaccount.php:97 -#: actions/twitapidirect_messages.php:178 -#: actions/twitapifavorites.php:139 -#: actions/twitapihelp.php:49 -#: actions/twitapistatuses.php:549 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método da API en contrución." -#: ../lib/util.php:324 -#: lib/util.php:340 -#: lib/util.php:369 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" -#: ../actions/userauthorization.php:119 -#: actions/userauthorization.php:126 +#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceptar" -#: ../actions/emailsettings.php:62 -#: ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 -#: ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 -#: actions/imsettings.php:64 -#: actions/openidsettings.php:58 -#: actions/smssettings.php:71 -#: actions/twittersettings.php:85 -#: actions/smspostsettings.php:50 -#: actions/twittersettings.php:84 -#: actions/smspostsettings.php:51 +#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 +#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 +#: actions/emailsettings.php:63 actions/imsettings.php:64 +#: actions/openidsettings.php:58 actions/smssettings.php:71 +#: actions/twittersettings.php:85 actions/emailsettings.php:120 +#: actions/imsettings.php:127 actions/openidsettings.php:111 +#: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Engadir" -#: ../actions/openidsettings.php:43 -#: actions/openidsettings.php:44 +#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 +#: actions/openidsettings.php:93 msgid "Add OpenID" msgstr "Engadir dirección OpenID" -#: ../lib/settingsaction.php:97 -#: lib/settingsaction.php:91 -#: actions/deleteprofile.php:248 +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" msgstr "Engadir ou eliminar OpenID" -#: ../actions/emailsettings.php:38 -#: ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 -#: actions/emailsettings.php:39 -#: actions/imsettings.php:40 -#: actions/smssettings.php:39 +#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 +#: ../actions/smssettings.php:39 actions/emailsettings.php:39 +#: actions/imsettings.php:40 actions/smssettings.php:39 +#: actions/emailsettings.php:94 actions/imsettings.php:94 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Enderezo" -#: ../actions/invite.php:131 -#: actions/invite.php:139 +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direccións dos amigos que queres invitar (unha por liña)" -#: ../actions/showstream.php:273 -#: actions/showstream.php:288 -#: actions/showstream.php:336 +#: ../actions/showstream.php:273 actions/showstream.php:288 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tódalas subscricións" -#: ../actions/publicrss.php:64 -#: actions/publicrss.php:50 +#: ../actions/publicrss.php:64 actions/publicrss.php:50 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tódalas actualizacións de %s" -#: ../actions/noticesearchrss.php:66 -#: actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:63 +#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" -#: ../actions/finishopenidlogin.php:29 -#: ../actions/login.php:31 -#: ../actions/openidlogin.php:29 -#: ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 -#: actions/login.php:31 -#: actions/openidlogin.php:29 -#: actions/register.php:30 +#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 +#: ../actions/openidlogin.php:29 ../actions/register.php:30 +#: actions/finishopenidlogin.php:29 actions/login.php:31 +#: actions/openidlogin.php:29 actions/register.php:30 +#: actions/finishopenidlogin.php:34 actions/login.php:77 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Sesión xa iniciada" -#: ../lib/subs.php:42 -#: lib/subs.php:42 -#: lib/subs.php:47 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "¡Xa está subscrito!." -#: ../actions/deletenotice.php:54 -#: actions/deletenotice.php:55 +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Estas seguro que queres eliminar este chío?" -#: ../actions/userauthorization.php:77 -#: actions/userauthorization.php:83 +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Subscrición de autorización." -#: ../actions/login.php:104 -#: ../actions/register.php:178 -#: actions/register.php:192 -#: actions/login.php:111 -#: actions/openidlogin.php:86 -#: actions/register.php:219 +#: ../actions/login.php:104 ../actions/register.php:178 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" -#: ../actions/profilesettings.php:65 -#: actions/profilesettings.php:98 -#: actions/profilesettings.php:112 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" -#: ../actions/avatar.php:32 -#: ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" -#: ../actions/avatar.php:113 -#: actions/profilesettings.php:350 -#: actions/profilesettings.php:396 +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado." -#: ../actions/imsettings.php:55 -#: actions/imsettings.php:56 +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/emailsettings.php:54 -#: actions/emailsettings.php:55 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches a %s á túa lista de contactos?)" +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" +"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " +"a %s á túa lista de contactos?)" -#: ../actions/smssettings.php:58 -#: actions/smssettings.php:58 +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Agardando a confirmación neste número de teléfono." -#: ../lib/util.php:1318 -#: lib/util.php:1452 -#: lib/facebookaction.php:259 -#: lib/util.php:1851 +#: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "Antes »" -#: ../actions/profilesettings.php:49 -#: ../actions/register.php:170 -#: actions/profilesettings.php:82 -#: actions/register.php:184 -#: actions/profilesettings.php:84 -#: actions/register.php:211 +#: ../actions/profilesettings.php:49 ../actions/register.php:170 +#: actions/profilesettings.php:82 actions/register.php:184 +#: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" -#: ../actions/profilesettings.php:101 -#: ../actions/register.php:82 -#: ../actions/updateprofile.php:103 -#: actions/profilesettings.php:216 -#: actions/register.php:89 -#: actions/updateprofile.php:104 -#: actions/profilesettings.php:235 -#: actions/register.php:98 +#: ../actions/profilesettings.php:101 ../actions/register.php:82 +#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 +#: actions/register.php:89 actions/updateprofile.php:104 +#: actions/profilesettings.php:205 actions/register.php:174 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: ../lib/deleteaction.php:41 -#: lib/deleteaction.php:41 +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." -#: ../actions/updateprofile.php:119 -#: actions/updateprofile.php:120 +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Non se pode ler a URL do avatar de '%s'" -#: ../actions/password.php:85 -#: ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 -#: actions/recoverpassword.php:313 -#: actions/profilesettings.php:450 +#: ../actions/password.php:85 ../actions/recoverpassword.php:300 +#: actions/profilesettings.php:404 actions/recoverpassword.php:313 +#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Non se pode gardar a contrasinal." -#: ../actions/emailsettings.php:57 -#: ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 -#: actions/emailsettings.php:58 -#: actions/imsettings.php:59 -#: actions/smssettings.php:62 +#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 +#: ../actions/smssettings.php:62 actions/emailsettings.php:58 +#: actions/imsettings.php:59 actions/smssettings.php:62 +#: actions/emailsettings.php:111 actions/imsettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" -#: ../lib/openid.php:121 -#: lib/openid.php:121 +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Non se pode instanciar o obxecto consumidor de OpenID." -#: ../actions/imsettings.php:163 -#: actions/imsettings.php:171 -#: actions/imsettings.php:176 +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar ese identificador de Jabber" -#: ../actions/emailsettings.php:181 -#: actions/emailsettings.php:199 -#: actions/emailsettings.php:205 +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " -#: ../actions/password.php:45 -#: actions/profilesettings.php:184 -#: actions/profilesettings.php:201 +#: ../actions/password.php:45 actions/profilesettings.php:184 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modificado" -#: ../lib/settingsaction.php:88 -#: lib/settingsaction.php:88 -#: actions/deleteprofile.php:245 +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Cambiar a xestión de email" -#: ../actions/password.php:32 -#: actions/profilesettings.php:36 +#: ../actions/password.php:32 actions/profilesettings.php:36 +#: actions/passwordsettings.php:58 msgid "Change password" msgstr "Cambiar contrasinal" -#: ../lib/settingsaction.php:94 +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Cambiar contrasinal" -#: ../lib/settingsaction.php:85 -#: lib/settingsaction.php:85 -#: actions/deleteprofile.php:242 +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Configuración de perfil" -#: ../actions/password.php:43 -#: ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 -#: ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 -#: actions/recoverpassword.php:187 -#: actions/register.php:169 -#: actions/smssettings.php:65 -#: actions/profilesettings.php:199 -#: actions/register.php:196 +#: ../actions/password.php:43 ../actions/recoverpassword.php:181 +#: ../actions/register.php:155 ../actions/smssettings.php:65 +#: actions/profilesettings.php:182 actions/recoverpassword.php:187 +#: actions/register.php:169 actions/smssettings.php:65 +#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 +#: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" -#: ../actions/confirmaddress.php:90 -#: actions/confirmaddress.php:90 +#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 +#: actions/confirmaddress.php:144 msgid "Confirm Address" msgstr "Confirmar enderezo" -#: ../actions/emailsettings.php:238 -#: ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:230 -#: actions/smssettings.php:253 -#: actions/emailsettings.php:260 -#: actions/imsettings.php:235 -#: actions/smssettings.php:255 +#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 +#: ../actions/smssettings.php:245 actions/emailsettings.php:256 +#: actions/imsettings.php:230 actions/smssettings.php:253 +#: actions/emailsettings.php:379 actions/imsettings.php:361 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmación cancealada." -#: ../actions/smssettings.php:63 -#: actions/smssettings.php:63 +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmación." -#: ../actions/confirmaddress.php:38 -#: actions/confirmaddress.php:38 +#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 +#: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: ../actions/register.php:202 -#: actions/register.php:243 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" "\n" "* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" "Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" "\n" "* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" -"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar os teus chíos a través de mensaxería instantánea.\n" -"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que comparta os teus intereses. \n" -"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%%) para decirlle a outros máis sobre ti. \n" -"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que podes facer aquí. \n" +"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " +"enviar os teus chíos a través de mensaxería instantánea.\n" +"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " +"comparta os teus intereses. \n" +"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" +"%) para decirlle a outros máis sobre ti. \n" +"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " +"podes facer aquí. \n" "\n" "Grazas por rexistrarte e esperamos que laretexes moito." -#: ../actions/finishopenidlogin.php:91 -#: actions/finishopenidlogin.php:97 +#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectar" -#: ../actions/finishopenidlogin.php:86 -#: actions/finishopenidlogin.php:92 +#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectar con unha conta existente" -#: ../lib/util.php:332 -#: lib/util.php:348 -#: lib/util.php:377 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contacto" -#: ../lib/openid.php:178 -#: lib/openid.php:178 +#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Non se pode crear o formulario OpenID: %s" -#: ../actions/twitapifriendships.php:60 -#: ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 -#: actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:46 -#: actions/twitapifriendships.php:62 +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: ../actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:39 +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../lib/openid.php:160 -#: lib/openid.php:160 +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Non se pode redireccionar ao servidor: %s" -#: ../actions/updateprofile.php:162 -#: actions/updateprofile.php:163 +#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Non se pode gardar a información do avatar" -#: ../actions/updateprofile.php:155 -#: actions/updateprofile.php:156 +#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Non se pode gardar a nova información do perfil" -#: ../lib/subs.php:54 -#: lib/subs.php:61 -#: lib/subs.php:70 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Outro usuario non se puido suscribir a ti." -#: ../lib/subs.php:46 -#: lib/subs.php:46 -#: lib/subs.php:55 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No se pode suscribir." -#: ../actions/recoverpassword.php:102 -#: actions/recoverpassword.php:105 +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." #: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 -#: actions/finishremotesubscribe.php:112 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "Non se pode convertir o token da petición a tokens de acceso." -#: ../actions/confirmaddress.php:84 -#: ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 -#: ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 -#: actions/emailsettings.php:252 -#: actions/imsettings.php:226 -#: actions/smssettings.php:249 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:231 -#: actions/smssettings.php:251 +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." -#: ../lib/subs.php:103 -#: lib/subs.php:116 -#: lib/subs.php:129 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." -#: ../actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:82 +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Non se puido atopar ningún estado" -#: ../actions/remotesubscribe.php:127 -#: actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:148 +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." msgstr "Non se puido recoller o token de petición." -#: ../actions/emailsettings.php:205 -#: ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 -#: actions/emailsettings.php:223 -#: actions/imsettings.php:195 -#: actions/smssettings.php:214 -#: actions/emailsettings.php:229 -#: actions/imsettings.php:200 -#: actions/smssettings.php:216 +#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 +#: ../actions/smssettings.php:206 actions/emailsettings.php:223 +#: actions/imsettings.php:195 actions/smssettings.php:214 +#: actions/emailsettings.php:337 actions/imsettings.php:311 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." #: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 -#: actions/finishremotesubscribe.php:198 -#: actions/finishremotesubscribe.php:216 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." -#: ../actions/profilesettings.php:184 -#: ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 -#: actions/twitapiaccount.php:94 -#: actions/profilesettings.php:336 -#: actions/twitapiaccount.php:77 +#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 +#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 +#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Non se puido gardar o perfil." -#: ../actions/profilesettings.php:161 -#: actions/profilesettings.php:276 -#: actions/profilesettings.php:313 +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Non se puido actualizar o usuario para autosuscrición." -#: ../actions/emailsettings.php:280 -#: ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 -#: actions/emailsettings.php:312 -#: actions/emailsettings.php:302 -#: actions/emailsettings.php:316 +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro de usuario." -#: ../actions/confirmaddress.php:72 -#: ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 -#: ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 -#: ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 -#: ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 -#: actions/emailsettings.php:174 -#: actions/emailsettings.php:277 -#: actions/imsettings.php:146 -#: actions/imsettings.php:251 -#: actions/profilesettings.php:256 -#: actions/smssettings.php:165 -#: actions/smssettings.php:277 -#: actions/emailsettings.php:180 -#: actions/emailsettings.php:281 -#: actions/imsettings.php:151 -#: actions/imsettings.php:256 -#: actions/othersettings.php:173 -#: actions/profilesettings.php:293 -#: actions/smspostsettings.php:96 -#: actions/smspostsettings.php:123 -#: actions/smssettings.php:167 -#: actions/smssettings.php:279 -#: actions/smspostsettings.php:101 -#: actions/smspostsettings.php:128 +#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 +#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 +#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 +#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 +#: actions/confirmaddress.php:72 actions/emailsettings.php:174 +#: actions/emailsettings.php:277 actions/imsettings.php:146 +#: actions/imsettings.php:251 actions/profilesettings.php:256 +#: actions/smssettings.php:165 actions/smssettings.php:277 +#: actions/confirmaddress.php:114 actions/emailsettings.php:280 +#: actions/emailsettings.php:411 actions/imsettings.php:252 +#: actions/imsettings.php:395 actions/othersettings.php:162 +#: actions/profilesettings.php:259 actions/smssettings.php:266 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: ../actions/finishopenidlogin.php:84 -#: actions/finishopenidlogin.php:90 +#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" -#: ../actions/finishopenidlogin.php:70 -#: actions/finishopenidlogin.php:76 +#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un novo usuario con este alcume." -#: ../actions/finishopenidlogin.php:68 -#: actions/finishopenidlogin.php:74 +#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear nova conta" -#: ../actions/finishopenidlogin.php:191 -#: actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:208 +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creando nova conta para OpenID que xa ten un usuario." -#: ../actions/imsettings.php:45 -#: actions/imsettings.php:46 +#: ../actions/imsettings.php:45 actions/imsettings.php:46 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Direccións Jabber/GTalk confirmadas." -#: ../actions/smssettings.php:46 -#: actions/smssettings.php:46 +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de teléfono actual confirmado mediante SMS." -#: ../actions/emailsettings.php:44 -#: actions/emailsettings.php:45 +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Direccións de correo confirmadas actualmente." -#: ../actions/showstream.php:356 -#: actions/showstream.php:367 -#: actions/showstream.php:418 +#: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Actual" -#: ../classes/Notice.php:72 -#: classes/Notice.php:86 -#: classes/Notice.php:87 +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: ../lib/util.php:1061 -#: lib/util.php:1110 -#: lib/util.php:1479 +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro ó inserir a contestación na BD: %s" -#: ../actions/deletenotice.php:41 -#: actions/deletenotice.php:41 +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar chío" -#: ../actions/profilesettings.php:51 -#: ../actions/register.php:172 -#: actions/profilesettings.php:84 -#: actions/register.php:186 -#: actions/profilesettings.php:86 -#: actions/register.php:213 +#: ../actions/profilesettings.php:51 ../actions/register.php:172 +#: actions/profilesettings.php:84 actions/register.php:186 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: ../actions/register.php:158 -#: ../actions/register.php:161 -#: ../lib/settingsaction.php:87 -#: actions/register.php:172 -#: actions/register.php:175 -#: lib/settingsaction.php:87 -#: actions/deleteprofile.php:244 -#: actions/register.php:199 -#: actions/register.php:202 +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correo Electrónico" -#: ../actions/emailsettings.php:59 -#: actions/emailsettings.php:60 +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Enderezo de correo" -#: ../actions/emailsettings.php:32 -#: actions/emailsettings.php:32 +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 msgid "Email Settings" msgstr "Configuración de Correo" -#: ../actions/register.php:73 -#: actions/register.php:80 -#: actions/register.php:89 +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "O enderezo de correo xa existe." -#: ../lib/mail.php:90 -#: lib/mail.php:90 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmar correo electrónico" -#: ../actions/emailsettings.php:61 -#: actions/emailsettings.php:62 +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Dirección de correo, coma \"Nomede Usuario@exemplo.org\"" -#: ../actions/invite.php:129 -#: actions/invite.php:137 +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Enderezos de correo" -#: ../actions/recoverpassword.php:191 -#: actions/recoverpassword.php:197 +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Insire o teu alcume ou enderezo de correo." -#: ../actions/smssettings.php:64 -#: actions/smssettings.php:64 +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Insire o código que recibiches no teu teléfono." -#: ../actions/userauthorization.php:137 -#: actions/userauthorization.php:144 +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro no token de autorización." -#: ../actions/finishopenidlogin.php:253 -#: actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:274 +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Acounteceu un erro conectando o usuario ó OpenID." -#: ../actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:78 +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 +#: actions/finishaddopenid.php:126 msgid "Error connecting user." msgstr "Acounteceu un erro ó conectar co usuario" #: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 -#: actions/finishremotesubscribe.php:164 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Acounteceu un erro ó inserir o avatar" #: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 -#: actions/finishremotesubscribe.php:156 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Acounteceu un erro ó inserir o novo perfil" #: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 -#: actions/finishremotesubscribe.php:180 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Aconteceu un erro ó inserir o perfil remoto" -#: ../actions/recoverpassword.php:240 -#: actions/recoverpassword.php:246 +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Acounteceu un erro gardando a confirmación de enderezo." -#: ../actions/userauthorization.php:140 -#: actions/userauthorization.php:147 +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Acounteceu un erro gardando o perfil remoto." -#: ../lib/openid.php:226 -#: lib/openid.php:226 +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Acounteceu un erro ó gardar o perfil." -#: ../lib/openid.php:237 -#: lib/openid.php:237 +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Acounteceu un erro gardando o usuario." -#: ../actions/password.php:80 -#: actions/profilesettings.php:399 -#: actions/profilesettings.php:445 +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Acounteceu un erro gardando o usuario: é inválido." -#: ../actions/login.php:47 -#: ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 -#: ../actions/register.php:98 -#: actions/login.php:47 -#: actions/login.php:73 -#: actions/recoverpassword.php:320 -#: actions/register.php:108 -#: actions/login.php:54 -#: actions/login.php:80 -#: actions/register.php:117 +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Acounteceu un erro configurando o usuario." -#: ../actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:83 +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 +#: actions/finishaddopenid.php:131 msgid "Error updating profile" msgstr "Acounteceu un erro actualizando o usuario" #: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 -#: actions/finishremotesubscribe.php:174 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Acounteceu un erro actualizando o perfil remoto" -#: ../actions/recoverpassword.php:80 -#: actions/recoverpassword.php:80 +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 +#: actions/recoverpassword.php:86 msgid "Error with confirmation code." msgstr "Acounteceu un erro co código de confirmación." -#: ../actions/finishopenidlogin.php:89 -#: actions/finishopenidlogin.php:95 +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Alcume existente" -#: ../lib/util.php:326 -#: lib/util.php:342 -#: lib/util.php:371 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntas frecuentes" -#: ../actions/avatar.php:115 -#: actions/profilesettings.php:352 -#: actions/profilesettings.php:398 +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Acounteceu un fallo ó actualizar o avatar." -#: ../actions/all.php:61 -#: ../actions/allrss.php:64 -#: actions/all.php:61 -#: actions/allrss.php:64 +#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 +#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Fonte para os amigos de %s" -#: ../actions/replies.php:65 -#: ../actions/repliesrss.php:80 -#: actions/replies.php:65 -#: actions/repliesrss.php:66 +#: ../actions/replies.php:65 ../actions/repliesrss.php:80 +#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Fonte para as contestacións de %s" -#: ../actions/tag.php:55 -#: actions/tag.php:55 -#: actions/tag.php:61 +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Fonte para a etiqueta %s" -#: ../lib/searchaction.php:105 -#: lib/searchaction.php:105 +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 msgid "Find content of notices" msgstr "Atopar no contido dos chíos" -#: ../lib/searchaction.php:101 -#: lib/searchaction.php:101 +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "Atopar xente neste sitio" -#: ../actions/login.php:122 -#: actions/login.php:142 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." -#: ../actions/profilesettings.php:44 -#: ../actions/register.php:164 -#: actions/profilesettings.php:77 -#: actions/register.php:178 -#: actions/profilesettings.php:79 -#: actions/register.php:205 +#: ../actions/profilesettings.php:44 ../actions/register.php:164 +#: actions/profilesettings.php:77 actions/register.php:178 +#: actions/profilesettings.php:103 actions/register.php:391 +#: actions/showgroup.php:235 actions/showstream.php:262 +#: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome completo" -#: ../actions/profilesettings.php:98 -#: ../actions/register.php:79 -#: ../actions/updateprofile.php:93 -#: actions/profilesettings.php:213 -#: actions/register.php:86 -#: actions/updateprofile.php:94 -#: actions/profilesettings.php:232 -#: actions/register.php:95 +#: ../actions/profilesettings.php:98 ../actions/register.php:79 +#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 +#: actions/register.php:86 actions/updateprofile.php:94 +#: actions/editgroup.php:195 actions/newgroup.php:146 +#: actions/profilesettings.php:202 actions/register.php:171 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: ../lib/util.php:322 -#: lib/util.php:338 -#: lib/util.php:359 -#: lib/util.php:367 +#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Axuda" -#: ../lib/util.php:298 -#: lib/util.php:314 -#: lib/util.php:343 +#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Persoal" -#: ../actions/profilesettings.php:46 -#: ../actions/register.php:167 -#: actions/profilesettings.php:79 -#: actions/register.php:181 -#: actions/profilesettings.php:81 -#: actions/register.php:208 +#: ../actions/profilesettings.php:46 ../actions/register.php:167 +#: actions/profilesettings.php:79 actions/register.php:181 +#: actions/profilesettings.php:107 actions/register.php:396 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Páxina persoal" -#: ../actions/profilesettings.php:95 -#: ../actions/register.php:76 -#: actions/profilesettings.php:210 -#: actions/register.php:83 -#: actions/profilesettings.php:229 -#: actions/register.php:92 +#: ../actions/profilesettings.php:95 ../actions/register.php:76 +#: actions/profilesettings.php:210 actions/register.php:83 +#: actions/editgroup.php:192 actions/newgroup.php:143 +#: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A páxina persoal semella que non é unha URL válida." -#: ../actions/emailsettings.php:91 -#: actions/emailsettings.php:98 +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Quero enviar chíos dende o mail." -#: ../lib/settingsaction.php:102 -#: lib/settingsaction.php:96 -#: actions/deleteprofile.php:253 -#: lib/settingsaction.php:100 -#: lib/settingsaction.php:102 +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" -#: ../actions/imsettings.php:60 -#: actions/imsettings.php:61 +#: ../actions/imsettings.php:60 actions/imsettings.php:61 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Enderezo de IM" -#: ../actions/imsettings.php:33 -#: actions/imsettings.php:33 +#: ../actions/imsettings.php:33 actions/imsettings.php:33 +#: actions/imsettings.php:59 msgid "IM Settings" msgstr "Configuracións de IM" -#: ../actions/finishopenidlogin.php:88 -#: actions/finishopenidlogin.php:94 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." +#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." -#: ../actions/openidsettings.php:45 -#: actions/openidsettings.php:46 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de embaixo e fai clic en \"Engadir\"." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de " +"embaixo e fai clic en \"Engadir\"." -#: ../actions/recoverpassword.php:137 -#: actions/recoverpassword.php:141 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." -#: ../actions/emailsettings.php:67 -#: ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 -#: actions/smssettings.php:76 +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correo Entrante" -#: ../actions/emailsettings.php:283 -#: actions/emailsettings.php:301 -#: actions/emailsettings.php:305 +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Dirección de correo entrante eliminada." -#: ../actions/password.php:69 -#: actions/profilesettings.php:388 -#: actions/profilesettings.php:434 +#: ../actions/password.php:69 actions/profilesettings.php:388 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contrasinal actual incorrecta" -#: ../actions/login.php:67 -#: actions/login.php:67 -#: actions/login.php:74 +#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Usuario ou contrasinal incorrectos." -#: ../actions/recoverpassword.php:265 -#: actions/recoverpassword.php:271 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo de correo da túa conta." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " +"de correo da túa conta." -#: ../actions/updateprofile.php:114 -#: actions/updateprofile.php:115 +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL do avatar '%s' inválido" -#: ../actions/invite.php:55 -#: actions/invite.php:62 +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Dirección de correo Inválida: %s" -#: ../actions/updateprofile.php:98 -#: actions/updateprofile.php:99 +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Páxina persoal '%s' inválida" -#: ../actions/updateprofile.php:82 -#: actions/updateprofile.php:83 +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de licenza '%s' inválida" -#: ../actions/postnotice.php:61 -#: actions/postnotice.php:62 -#: actions/postnotice.php:63 +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contido do chío inválido" -#: ../actions/postnotice.php:67 -#: actions/postnotice.php:68 -#: actions/postnotice.php:69 +#: ../actions/postnotice.php:67 actions/postnotice.php:68 +#: actions/postnotice.php:72 msgid "Invalid notice uri" msgstr "Enderezo de chío inválido" -#: ../actions/postnotice.php:72 -#: actions/postnotice.php:73 -#: actions/postnotice.php:74 +#: ../actions/postnotice.php:72 actions/postnotice.php:73 +#: actions/postnotice.php:77 msgid "Invalid notice url" msgstr "Enderezo de chío inválido" -#: ../actions/updateprofile.php:87 -#: actions/updateprofile.php:88 +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Enderezo de perfil inválido '%s'." -#: ../actions/remotesubscribe.php:96 -#: actions/remotesubscribe.php:105 +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Enderezo de perfil inválido (formato incorrecto)" #: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 -#: actions/finishremotesubscribe.php:78 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." msgstr "Enderezo de perfil inválido devolto polo servidor." -#: ../actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:37 +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 +#: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "Tamaño inválido." -#: ../actions/finishopenidlogin.php:235 -#: ../actions/register.php:93 -#: ../actions/register.php:111 -#: actions/finishopenidlogin.php:241 -#: actions/register.php:103 -#: actions/register.php:121 -#: actions/finishopenidlogin.php:256 -#: actions/register.php:112 -#: actions/register.php:130 +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Usuario ou contrasinal inválidos." -#: ../actions/invite.php:79 -#: actions/invite.php:86 +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitación(s) enviada(s)." -#: ../actions/invite.php:97 -#: actions/invite.php:104 +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitación(s) enviada(s) á seguinte xente:" -#: ../lib/util.php:306 -#: lib/util.php:322 -#: lib/util.php:382 +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" -#: ../actions/invite.php:123 -#: actions/invite.php:130 +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar a novos usuarios" -#: ../lib/util.php:261 -#: lib/util.php:277 -#: lib/util.php:294 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Correndo o software de microblogaxe [StatusNet](http://status.net/), versión %s, dispoñible baixo licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " +"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 -#: actions/imsettings.php:181 -#: actions/imsettings.php:186 +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O identificador de Jabber xa pertence a outro usuario." -#: ../actions/imsettings.php:62 -#: actions/imsettings.php:63 +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " +"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " +"GTalk." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:98 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Linguaxe" -#: ../actions/profilesettings.php:113 -#: actions/profilesettings.php:228 -#: actions/profilesettings.php:247 +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "A Linguaxe é demasiado longa (max 50 car.)." -#: ../actions/profilesettings.php:52 -#: ../actions/register.php:173 -#: actions/profilesettings.php:85 -#: actions/register.php:187 -#: actions/profilesettings.php:87 -#: actions/register.php:214 +#: ../actions/profilesettings.php:52 ../actions/register.php:173 +#: actions/profilesettings.php:85 actions/register.php:187 +#: actions/profilesettings.php:117 actions/register.php:408 +#: actions/showgroup.php:244 actions/showstream.php:271 +#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localización" -#: ../actions/profilesettings.php:104 -#: ../actions/register.php:85 -#: ../actions/updateprofile.php:108 -#: actions/profilesettings.php:219 -#: actions/register.php:92 -#: actions/updateprofile.php:109 -#: actions/profilesettings.php:238 -#: actions/register.php:101 +#: ../actions/profilesettings.php:104 ../actions/register.php:85 +#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 +#: actions/register.php:92 actions/updateprofile.php:109 +#: actions/editgroup.php:201 actions/newgroup.php:152 +#: actions/profilesettings.php:208 actions/register.php:177 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "A localización é demasiado longa (max 255 car.)." -#: ../actions/login.php:97 -#: ../actions/login.php:106 -#: ../actions/openidlogin.php:68 -#: ../lib/util.php:310 -#: actions/login.php:97 -#: actions/login.php:106 -#: actions/openidlogin.php:77 -#: lib/util.php:326 -#: actions/login.php:104 -#: actions/login.php:113 -#: actions/login.php:129 -#: actions/openidlogin.php:88 -#: lib/util.php:352 +#: ../actions/login.php:97 ../actions/login.php:106 +#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 +#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 +#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 +#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 +#, php-format msgid "Login" msgstr "Inicio de sesión" -#: ../actions/openidlogin.php:44 -#: actions/openidlogin.php:52 -#: actions/openidlogin.php:60 +#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Acceder con unha conta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 -#: actions/login.php:146 +#: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 -#: lib/util.php:324 -#: lib/util.php:350 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" -#: ../actions/register.php:166 -#: actions/register.php:180 -#: actions/register.php:207 +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome máis longo, preferiblemente o teu nome \"real\"" -#: ../actions/login.php:110 -#: actions/login.php:110 -#: actions/login.php:118 +#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "¿Perdeches a contrasinal?" -#: ../actions/emailsettings.php:80 -#: ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 -#: actions/smssettings.php:89 +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." -#: ../actions/emailsettings.php:27 -#: actions/emailsettings.php:27 +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Xestina como recibir correo dende %%site.name%%." -#: ../actions/showstream.php:300 -#: actions/showstream.php:315 -#: actions/showstream.php:363 +#: ../actions/showstream.php:300 actions/showstream.php:315 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro dende" -#: ../actions/userrss.php:70 -#: actions/userrss.php:67 +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblogue por %s" -#: ../actions/smssettings.php:304 -#: actions/smssettings.php:314 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre email e non está listada aquí, envianos unha mensaxe para incluilo en %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " +"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." -#: ../actions/finishopenidlogin.php:79 -#: ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 -#: actions/register.php:202 -#: actions/register.php:229 +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "O meu texto e arquivos están dispoñibles baixo licenza " -#: ../actions/emailsettings.php:82 -#: ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 -#: actions/smssettings.php:91 +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 -#: lib/mail.php:144 -#: lib/mail.php:138 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nova dirección de email para posterar en %s" -#: ../actions/emailsettings.php:297 -#: actions/emailsettings.php:315 -#: actions/emailsettings.php:319 +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Engadida nova dirección de correo entrante." -#: ../actions/finishopenidlogin.php:71 -#: actions/finishopenidlogin.php:77 +#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Novo alcume" -#: ../actions/newnotice.php:87 -#: actions/newnotice.php:96 -#: actions/newnotice.php:141 +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Novo chío" -#: ../actions/password.php:41 -#: ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 -#: actions/recoverpassword.php:185 -#: actions/profilesettings.php:197 +#: ../actions/password.php:41 ../actions/recoverpassword.php:179 +#: actions/profilesettings.php:180 actions/recoverpassword.php:185 +#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova contrasinal" -#: ../actions/recoverpassword.php:314 -#: actions/recoverpassword.php:327 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "A nova contrasinal gardouse correctamente. Xa estas logueado." -#: ../actions/login.php:101 -#: ../actions/profilesettings.php:41 -#: ../actions/register.php:151 -#: actions/login.php:101 -#: actions/profilesettings.php:74 -#: actions/register.php:165 -#: actions/login.php:108 -#: actions/profilesettings.php:76 -#: actions/register.php:192 +#: ../actions/login.php:101 ../actions/profilesettings.php:41 +#: ../actions/register.php:151 actions/login.php:101 +#: actions/profilesettings.php:74 actions/register.php:165 +#: actions/login.php:228 actions/profilesettings.php:98 +#: actions/register.php:367 actions/showgroup.php:224 +#: actions/showstream.php:251 actions/tagother.php:95 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Alcume" -#: ../actions/finishopenidlogin.php:175 -#: ../actions/profilesettings.php:110 -#: ../actions/register.php:69 -#: actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 -#: actions/register.php:76 -#: actions/finishopenidlogin.php:192 -#: actions/profilesettings.php:244 -#: actions/register.php:85 +#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 +#: ../actions/register.php:69 actions/finishopenidlogin.php:181 +#: actions/profilesettings.php:225 actions/register.php:76 +#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 +#: actions/newgroup.php:134 actions/profilesettings.php:214 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: ../actions/finishopenidlogin.php:165 -#: ../actions/profilesettings.php:88 -#: ../actions/register.php:67 -#: ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 -#: actions/profilesettings.php:203 -#: actions/register.php:74 -#: actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:182 -#: actions/profilesettings.php:222 -#: actions/register.php:83 +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." -#: ../actions/finishopenidlogin.php:170 -#: actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:187 +#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Alcume non permitido." -#: ../actions/remotesubscribe.php:72 -#: actions/remotesubscribe.php:81 +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Alcume de usuario que queres" -#: ../actions/recoverpassword.php:162 -#: actions/recoverpassword.php:167 +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Alcume ou email" -#: ../actions/deletenotice.php:59 -#: actions/deletenotice.php:60 -#: actions/block.php:104 +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" -#: ../actions/imsettings.php:156 -#: actions/imsettings.php:164 -#: actions/imsettings.php:169 +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Sen Identificador de Jabber." -#: ../actions/userauthorization.php:129 -#: actions/userauthorization.php:136 +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Sen petición de autorización!" -#: ../actions/smssettings.php:181 -#: actions/smssettings.php:189 -#: actions/smssettings.php:191 +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Non se seleccionou unha operadora." -#: ../actions/smssettings.php:316 -#: actions/smssettings.php:324 -#: actions/smssettings.php:326 +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Non se inseriu ningún código" -#: ../actions/confirmaddress.php:33 -#: actions/confirmaddress.php:33 +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 +#: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "Sen código de confirmación." -#: ../actions/newnotice.php:44 -#: actions/newmessage.php:53 -#: actions/newnotice.php:44 -#: classes/Command.php:197 -#: actions/newmessage.php:52 -#: actions/newnotice.php:53 +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Sen contido!" -#: ../actions/emailsettings.php:174 -#: actions/emailsettings.php:192 -#: actions/emailsettings.php:198 +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Non se inseriu unha dirección de correo" -#: ../actions/userbyid.php:32 -#: actions/userbyid.php:32 +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Sen id." -#: ../actions/emailsettings.php:271 -#: actions/emailsettings.php:289 -#: actions/emailsettings.php:293 +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Non hai direccións de correo entrante" #: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 -#: actions/finishremotesubscribe.php:66 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." msgstr "O servidor remoto non proporcionou un alcume." -#: ../actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:27 +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Sen alcume." -#: ../actions/emailsettings.php:222 -#: ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 -#: actions/emailsettings.php:240 -#: actions/imsettings.php:214 -#: actions/smssettings.php:237 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:219 -#: actions/smssettings.php:239 +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente para cancelar." -#: ../actions/smssettings.php:176 -#: actions/smssettings.php:184 -#: actions/smspostsettings.php:76 -#: actions/smssettings.php:186 -#: actions/smspostsettings.php:81 +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Non hai ningún número de teléfono." #: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 -#: actions/finishremotesubscribe.php:73 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "O servidor non voltou ningún enderezo de perfil." -#: ../actions/recoverpassword.php:226 -#: actions/recoverpassword.php:232 +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Non hai un enderezo de correo rexistrado para ese usuario." -#: ../actions/userauthorization.php:49 -#: actions/userauthorization.php:55 +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 +#: actions/userauthorization.php:57 msgid "No request found!" msgstr "¡Non se atoparon peticións!" -#: ../actions/noticesearch.php:64 -#: ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 -#: actions/peoplesearch.php:69 -#: actions/noticesearch.php:68 -#: actions/peoplesearch.php:59 +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Non se atoparon resultados" -#: ../actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:32 +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 msgid "No size." msgstr "Sen tamaño." -#: ../actions/twitapistatuses.php:595 -#: actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 -#: actions/twitapifavorites.php:109 -#: actions/twitapistatuses.php:438 +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Non se atopou un estado con ese ID." -#: ../actions/twitapistatuses.php:555 -#: actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:411 +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." -#: ../actions/openidsettings.php:135 -#: actions/openidsettings.php:144 +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 +#: actions/openidsettings.php:222 msgid "No such OpenID." msgstr "Ningún OpenID." -#: ../actions/doc.php:29 -#: actions/doc.php:29 +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Ningún documento." -#: ../actions/shownotice.php:32 -#: ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 -#: actions/shownotice.php:32 -#: actions/shownotice.php:83 -#: lib/deleteaction.php:30 -#: actions/shownotice.php:38 -#: actions/shownotice.php:114 +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Ningún chío." -#: ../actions/recoverpassword.php:56 -#: actions/recoverpassword.php:56 +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 msgid "No such recovery code." msgstr "Ningún código de recuperación." -#: ../actions/postnotice.php:56 -#: actions/postnotice.php:57 +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 msgid "No such subscription" msgstr "Ningunha subscripción" -#: ../actions/all.php:34 -#: ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 -#: ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 -#: ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 -#: ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 -#: ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 -#: ../actions/xrds.php:35 -#: ../lib/gallery.php:57 -#: ../lib/subs.php:33 -#: ../lib/subs.php:82 -#: actions/all.php:34 -#: actions/allrss.php:35 -#: actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 -#: actions/foaf.php:40 -#: actions/ical.php:31 -#: actions/remotesubscribe.php:93 -#: actions/remotesubscribe.php:100 -#: actions/replies.php:57 -#: actions/repliesrss.php:35 -#: actions/showfavorites.php:34 -#: actions/showstream.php:110 -#: actions/userbyid.php:36 -#: actions/userrss.php:35 -#: actions/xrds.php:35 -#: classes/Command.php:120 -#: classes/Command.php:162 -#: classes/Command.php:203 -#: classes/Command.php:237 -#: lib/gallery.php:62 -#: lib/mailbox.php:36 -#: lib/subs.php:33 -#: lib/subs.php:95 -#: actions/showstream.php:157 -#: classes/Command.php:208 -#: classes/Command.php:242 -#: lib/gallery.php:85 -#: lib/subs.php:105 +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Ningún usuario." -#: ../actions/recoverpassword.php:211 -#: actions/recoverpassword.php:217 +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Non hai ningún usuario con isa dirección de correo ou nome de usuario." -#: ../lib/gallery.php:80 -#: lib/gallery.php:85 -#: actions/users.php:59 +#: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Ninguén para amosar" -#: ../actions/recoverpassword.php:60 -#: actions/recoverpassword.php:60 +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 msgid "Not a recovery code." msgstr "Non é un código de recuperación." -#: ../scripts/maildaemon.php:50 -#: scripts/maildaemon.php:50 +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Non é un usuario rexistrado." -#: ../lib/twitterapi.php:226 -#: ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 -#: lib/twitterapi.php:391 -#: lib/twitterapi.php:418 -#: lib/twitterapi.php:502 -#: lib/twitterapi.php:423 -#: lib/twitterapi.php:450 -#: lib/twitterapi.php:534 +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." -#: ../actions/imsettings.php:167 -#: actions/imsettings.php:175 -#: actions/imsettings.php:180 +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Non é un Identificador de Jabber válido" -#: ../lib/openid.php:131 -#: lib/openid.php:131 +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Non é un enderezo OpenID válido." -#: ../actions/emailsettings.php:185 -#: actions/emailsettings.php:203 -#: actions/emailsettings.php:209 +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Non é unha dirección de correo válida" -#: ../actions/register.php:63 -#: actions/register.php:70 -#: actions/register.php:79 +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." -#: ../actions/profilesettings.php:91 -#: ../actions/register.php:71 -#: actions/profilesettings.php:206 -#: actions/register.php:78 -#: actions/profilesettings.php:225 -#: actions/register.php:87 +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Non é un alcume válido." -#: ../actions/remotesubscribe.php:120 -#: actions/remotesubscribe.php:129 +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." msgstr "Non é un enderezo de perfil válido (servizos incorrectos)." -#: ../actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:122 +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." msgstr "Non é un enderezo de perfil válido (non está definido ningún XRDS)." -#: ../actions/remotesubscribe.php:104 -#: actions/remotesubscribe.php:113 +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." -#: ../actions/avatar.php:95 -#: actions/profilesettings.php:332 -#: actions/profilesettings.php:378 +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Non é unha imaxe ou está corrupta." #: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 -#: actions/finishremotesubscribe.php:52 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." msgstr "Non está autorizado." #: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Non esperaba esa resposta!" -#: ../actions/twitapistatuses.php:422 -#: actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:304 +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non atopado" -#: ../actions/finishaddopenid.php:29 -#: ../actions/logout.php:33 -#: ../actions/newnotice.php:29 -#: ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 -#: ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 -#: actions/disfavor.php:29 -#: actions/favor.php:30 -#: actions/finishaddopenid.php:29 -#: actions/logout.php:33 -#: actions/newmessage.php:28 -#: actions/newnotice.php:29 -#: actions/subscribe.php:28 -#: actions/unsubscribe.php:25 -#: lib/deleteaction.php:38 -#: lib/settingsaction.php:27 -#: actions/block.php:31 -#: actions/misc.php:27 -#: actions/newnotice.php:30 -#: actions/nudge.php:30 -#: actions/subedit.php:31 -#: actions/unblock.php:31 +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non está logueado." -#: ../lib/subs.php:91 -#: lib/subs.php:104 -#: lib/subs.php:117 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Non está suscrito!" -#: ../actions/opensearch.php:35 -#: actions/opensearch.php:35 +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 msgid "Notice Search" msgstr "Procura de Chíos" -#: ../actions/showstream.php:82 -#: actions/showstream.php:82 -#: actions/showstream.php:111 -#: actions/showstream.php:118 -#: actions/showstream.php:123 +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" msgstr "Fonte de chíos para %s" -#: ../actions/shownotice.php:39 -#: actions/shownotice.php:39 -#: actions/shownotice.php:45 +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "O chío non ten perfil" -#: ../actions/showstream.php:316 -#: actions/showstream.php:331 -#: actions/showstream.php:379 +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Chíos" -#: ../actions/tag.php:35 -#: ../actions/tag.php:81 -#: actions/tag.php:35 -#: actions/tag.php:81 +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" -#: ../actions/password.php:39 -#: actions/profilesettings.php:178 -#: actions/profilesettings.php:195 +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Contrasinal antiga" -#: ../lib/settingsaction.php:96 -#: ../lib/util.php:314 -#: lib/settingsaction.php:90 -#: lib/util.php:330 -#: actions/deleteprofile.php:247 +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" -#: ../actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:66 +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuración de conta OpenID" -#: ../lib/openid.php:180 -#: lib/openid.php:180 +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-Envío de OpenID" -#: ../actions/finishaddopenid.php:99 -#: ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 -#: actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 -#: actions/openidlogin.php:68 -#: actions/finishopenidlogin.php:150 -#: actions/openidlogin.php:76 +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Acceso OpenID" -#: ../actions/openidlogin.php:65 -#: ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 -#: actions/openidsettings.php:50 -#: actions/login.php:125 -#: actions/openidlogin.php:82 +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "Enderezo OpenID" -#: ../actions/finishaddopenid.php:42 -#: ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 -#: actions/finishopenidlogin.php:109 +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticación OpenID cancelada." -#: ../actions/finishaddopenid.php:46 -#: ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 -#: actions/finishopenidlogin.php:113 +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "A autenticación OpenID fallou: %s" -#: ../lib/openid.php:133 -#: lib/openid.php:133 +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Fallou o OpenID: %s" -#: ../actions/openidsettings.php:144 -#: actions/openidsettings.php:153 +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 +#: actions/openidsettings.php:231 msgid "OpenID removed." msgstr "OpenID eliminado." -#: ../actions/openidsettings.php:37 -#: actions/openidsettings.php:37 +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 +#: actions/openidsettings.php:59 msgid "OpenID settings" msgstr "Configuracións de OpenID" -#: ../actions/invite.php:135 -#: actions/invite.php:143 +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#: ../actions/avatar.php:84 -#: actions/profilesettings.php:321 -#: actions/profilesettings.php:367 +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Carga parcial." -#: ../actions/finishopenidlogin.php:90 -#: ../actions/login.php:102 -#: ../actions/register.php:153 -#: ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 -#: actions/login.php:102 -#: actions/register.php:167 -#: actions/login.php:109 -#: actions/register.php:194 +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contrasinal" -#: ../actions/recoverpassword.php:288 -#: actions/recoverpassword.php:301 +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "A contrasinal e a súa confirmación non coinciden." -#: ../actions/recoverpassword.php:284 -#: actions/recoverpassword.php:297 +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "A contrasinal debe ter 6 caracteres ou máis." -#: ../actions/recoverpassword.php:261 -#: ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 -#: actions/recoverpassword.php:269 +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Petición de recuperación de contrasinal" -#: ../actions/password.php:89 -#: ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 -#: actions/recoverpassword.php:326 -#: actions/profilesettings.php:454 +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Contrasinal gardada." -#: ../actions/password.php:61 -#: ../actions/register.php:88 -#: actions/profilesettings.php:380 -#: actions/register.php:98 -#: actions/profilesettings.php:426 -#: actions/register.php:107 +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "As contrasinais non coinciden" -#: ../lib/searchaction.php:100 -#: lib/searchaction.php:100 +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 msgid "People" msgstr "Xente" -#: ../actions/opensearch.php:33 -#: actions/opensearch.php:33 +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 msgid "People Search" msgstr "Procurar xente" -#: ../actions/peoplesearch.php:33 -#: actions/peoplesearch.php:33 +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 msgid "People search" msgstr "Procurar xente." -#: ../lib/stream.php:50 -#: lib/personal.php:50 +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoal" -#: ../actions/invite.php:133 -#: actions/invite.php:141 +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensaxe persoal" -#: ../actions/smssettings.php:69 -#: actions/smssettings.php:69 -#: actions/smspostsettings.php:49 -#: actions/smspostsettings.php:50 +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" #: ../actions/userauthorization.php:78 -#: actions/userauthorization.php:84 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: ../actions/imsettings.php:73 -#: actions/imsettings.php:74 +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: ../actions/emailsettings.php:85 -#: ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 -#: actions/emailsettings.php:86 -#: actions/imsettings.php:68 -#: actions/smssettings.php:94 -#: actions/twittersettings.php:70 +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencias" -#: ../actions/emailsettings.php:162 -#: ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 -#: actions/emailsettings.php:180 -#: actions/imsettings.php:152 -#: actions/smssettings.php:171 -#: actions/emailsettings.php:186 -#: actions/imsettings.php:157 -#: actions/othersettings.php:179 -#: actions/smssettings.php:173 +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferencias gardadas." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:98 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Linguaxe preferida" -#: ../lib/util.php:328 -#: lib/util.php:344 -#: lib/util.php:373 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidade" -#: ../classes/Notice.php:95 -#: ../classes/Notice.php:106 -#: classes/Notice.php:109 -#: classes/Notice.php:119 -#: classes/Notice.php:139 -#: classes/Notice.php:149 +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: ../lib/settingsaction.php:84 -#: ../lib/stream.php:60 -#: lib/personal.php:60 -#: lib/settingsaction.php:84 -#: actions/deleteprofile.php:241 +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" -#: ../actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:82 +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Enderezo de perfil" -#: ../actions/profilesettings.php:34 -#: actions/profilesettings.php:32 +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuración de perfil" -#: ../actions/postnotice.php:51 -#: ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 -#: actions/updateprofile.php:53 +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil descoñecido" -#: ../actions/public.php:54 -#: actions/public.php:54 -#: actions/public.php:77 +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" msgstr "Sindicación do Fio Público" -#: ../actions/public.php:33 -#: actions/public.php:33 -#: lib/stream.php:34 +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Liña de tempo pública" -#: ../actions/imsettings.php:79 -#: actions/imsettings.php:80 +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." -#: ../actions/emailsettings.php:94 -#: actions/emailsettings.php:101 +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." -#: ../actions/tag.php:75 -#: ../actions/tag.php:76 -#: actions/tag.php:75 +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" msgstr "Tags Recentes" -#: ../actions/recoverpassword.php:166 -#: actions/recoverpassword.php:171 +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" -#: ../actions/recoverpassword.php:156 -#: actions/recoverpassword.php:161 +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contrasinal" -#: ../actions/recoverpassword.php:67 -#: actions/recoverpassword.php:67 +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "Código de recuperación para usuario descoñecido." -#: ../actions/register.php:142 -#: ../actions/register.php:193 -#: ../lib/util.php:312 -#: actions/register.php:152 -#: actions/register.php:207 -#: lib/util.php:328 -#: actions/register.php:181 -#: actions/register.php:234 -#: lib/util.php:354 +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" -#: ../actions/register.php:28 -#: actions/register.php:28 -#: actions/finishopenidlogin.php:173 +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Non se permite o rexistro neste intre." -#: ../actions/register.php:200 -#: actions/register.php:214 -#: actions/register.php:241 +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: ../actions/userauthorization.php:120 -#: actions/userauthorization.php:127 +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rexeitar" -#: ../actions/login.php:103 -#: ../actions/register.php:176 -#: actions/login.php:103 -#: actions/register.php:190 -#: actions/login.php:110 -#: actions/openidlogin.php:85 -#: actions/register.php:217 +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Lembrarme" -#: ../actions/updateprofile.php:70 -#: actions/updateprofile.php:71 +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Non hai ningún perfil que coincida co perfil remoto" -#: ../actions/remotesubscribe.php:65 -#: actions/remotesubscribe.php:73 +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Suscrición remota" -#: ../actions/emailsettings.php:47 -#: ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 -#: ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 -#: ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 -#: actions/emailsettings.php:76 -#: actions/imsettings.php:49 -#: actions/openidsettings.php:108 -#: actions/smssettings.php:50 -#: actions/smssettings.php:84 -#: actions/twittersettings.php:59 -#: actions/smspostsettings.php:45 -#: actions/twittersettings.php:61 -#: actions/smspostsettings.php:46 +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" -#: ../actions/openidsettings.php:68 -#: actions/openidsettings.php:69 +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres eliminalo, primeiro engade outro enderezo OpenID." +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres " +"eliminalo, primeiro engade outro enderezo OpenID." -#: ../lib/stream.php:55 -#: lib/personal.php:55 +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostas" -#: ../actions/replies.php:47 -#: ../actions/repliesrss.php:76 -#: ../lib/stream.php:56 -#: actions/replies.php:47 -#: actions/repliesrss.php:62 -#: lib/personal.php:56 +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Replies to %s" -#: ../actions/recoverpassword.php:183 -#: actions/recoverpassword.php:189 +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restaurar" -#: ../actions/recoverpassword.php:173 -#: actions/recoverpassword.php:178 +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restaurar contrasinal" -#: ../lib/settingsaction.php:99 -#: lib/settingsaction.php:93 -#: actions/deleteprofile.php:250 -#: actions/subscriptions.php:73 +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" -#: ../actions/smssettings.php:67 -#: actions/smssettings.php:67 -#: actions/smspostsettings.php:38 -#: actions/smspostsettings.php:39 +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número de Teléfono do SMS" -#: ../actions/smssettings.php:33 -#: actions/smssettings.php:33 +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Configuracións de SMS" -#: ../lib/mail.php:219 -#: lib/mail.php:225 -#: lib/mail.php:220 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmación de SMS" -#: ../actions/recoverpassword.php:182 -#: actions/recoverpassword.php:188 +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual que a contrasinal de enriba" -#: ../actions/register.php:156 -#: actions/register.php:170 -#: actions/register.php:197 +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." -#: ../actions/emailsettings.php:97 -#: ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 -#: ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 -#: actions/imsettings.php:82 -#: actions/profilesettings.php:101 -#: actions/smssettings.php:100 -#: actions/twittersettings.php:83 -#: actions/emailsettings.php:108 -#: actions/imsettings.php:85 -#: actions/othersettings.php:56 -#: actions/profilesettings.php:118 -#: actions/subscriptions.php:74 -#: actions/tagother.php:100 -#: actions/twittersettings.php:82 +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" -#: ../lib/searchaction.php:84 -#: ../lib/util.php:300 -#: lib/searchaction.php:84 -#: lib/util.php:316 -#: lib/util.php:345 +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Buscar" -#: ../actions/noticesearch.php:80 -#: actions/noticesearch.php:85 -#: actions/noticesearch.php:84 +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 msgid "Search Stream Feed" msgstr "Procura no Fío" -#: ../actions/noticesearch.php:30 -#: actions/noticesearch.php:30 -#: actions/noticesearch.php:29 +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de procura por espazos, deben ter 3 caracteres ou máis." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " +"procura por espazos, deben ter 3 caracteres ou máis." -#: ../actions/peoplesearch.php:28 -#: actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." -#: ../actions/smssettings.php:296 -#: actions/smssettings.php:304 -#: actions/smssettings.php:306 +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecciona unha operadora" -#: ../actions/invite.php:137 -#: ../lib/util.php:1172 -#: actions/invite.php:145 -#: lib/util.php:1306 -#: lib/util.php:1731 -#: lib/util.php:1705 -#: lib/util.php:2217 +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" -#: ../actions/emailsettings.php:73 -#: ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 -#: actions/smssettings.php:82 +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Enviar un correo a esta dirección para enviar novos chíos." -#: ../actions/emailsettings.php:88 -#: actions/emailsettings.php:89 +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Envíame chios de novas suscricións por email." -#: ../actions/imsettings.php:70 -#: actions/imsettings.php:71 +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme advertencias a través de Jabber/GTalk." -#: ../actions/smssettings.php:97 -#: actions/smssettings.php:97 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme grandes facturas." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " +"grandes facturas." -#: ../actions/imsettings.php:76 -#: actions/imsettings.php:77 +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." +msgstr "" +"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." -#: ../lib/util.php:304 -#: lib/util.php:320 -#: lib/util.php:348 +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuración" -#: ../actions/profilesettings.php:192 -#: actions/profilesettings.php:307 -#: actions/profilesettings.php:353 +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Configuracións gardadas." -#: ../actions/tag.php:60 -#: actions/tag.php:60 -#: actions/tag.php:67 +#: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" msgstr "Amoa os tags máis populares dende a semana pasada" -#: ../actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:66 +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." msgstr "Alguen máis ten ese enderezo OpenID." -#: ../actions/finishopenidlogin.php:42 -#: ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 -#: actions/openidsettings.php:135 +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." msgstr "Algo gordo aconteceu." -#: ../scripts/maildaemon.php:58 -#: scripts/maildaemon.php:58 +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Aivá, non se permiten correos entrantes." -#: ../scripts/maildaemon.php:54 -#: scripts/maildaemon.php:54 +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Ise é un enderezo IM incorrecto." -#: ../lib/util.php:330 -#: lib/util.php:346 -#: lib/util.php:375 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fonte" -#: ../actions/showstream.php:296 -#: actions/showstream.php:311 -#: actions/showstream.php:359 -#: actions/misc.php:87 +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estatísticas" -#: ../actions/finishopenidlogin.php:182 -#: ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 -#: actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:199 -#: actions/finishopenidlogin.php:267 +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID almacenado non atopado" -#: ../actions/remotesubscribe.php:75 -#: ../actions/showstream.php:188 -#: ../actions/showstream.php:197 -#: actions/remotesubscribe.php:84 -#: actions/showstream.php:197 -#: actions/showstream.php:206 -#: actions/showstream.php:254 -#: lib/util.php:2137 +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscribir" -#: ../actions/showstream.php:313 -#: ../actions/subscribers.php:27 -#: actions/showstream.php:328 -#: actions/subscribers.php:27 -#: actions/showstream.php:376 -#: lib/gallery.php:136 -#: lib/gallery.php:137 +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: ../actions/userauthorization.php:310 -#: actions/userauthorization.php:322 +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscrición autorizada" -#: ../actions/userauthorization.php:320 -#: actions/userauthorization.php:332 +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscrición rexeitada" -#: ../actions/showstream.php:230 -#: ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 -#: actions/showstream.php:240 -#: actions/showstream.php:322 -#: actions/subscriptions.php:27 -#: actions/showstream.php:288 -#: actions/showstream.php:370 -#: lib/gallery.php:131 -#: lib/gallery.php:132 +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" -#: ../actions/avatar.php:87 -#: actions/profilesettings.php:324 -#: actions/profilesettings.php:370 +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." -#: ../actions/tag.php:41 -#: ../lib/util.php:301 -#: actions/tag.php:41 -#: lib/util.php:317 -#: actions/profilesettings.php:90 -#: actions/showstream.php:382 -#: actions/tagother.php:96 -#: actions/tagother.php:162 -#: actions/tag.php:47 -#: lib/profilelist.php:126 -#: lib/profilelist.php:128 +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" -#: ../lib/searchaction.php:104 -#: lib/searchaction.php:104 +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: ../actions/noticesearch.php:34 -#: actions/noticesearch.php:34 -#: actions/noticesearch.php:33 +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Procura de texto" -#: ../actions/openidsettings.php:140 -#: actions/openidsettings.php:149 +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." msgstr "Ese OpenID non che pertence." -#: ../actions/confirmaddress.php:52 -#: actions/confirmaddress.php:52 +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 msgid "That address has already been confirmed." msgstr "Esa dirección xa foi confirmada." -#: ../actions/confirmaddress.php:43 -#: actions/confirmaddress.php:43 +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" -#: ../actions/emailsettings.php:191 -#: actions/emailsettings.php:209 -#: actions/emailsettings.php:215 +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Este enderezo de correo xa pertence a outro usuario." -#: ../actions/avatar.php:80 -#: actions/profilesettings.php:317 -#: actions/profilesettings.php:363 +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 msgid "That file is too big." msgstr "Ese arquivo é demasiado grande." -#: ../actions/imsettings.php:170 -#: actions/imsettings.php:178 -#: actions/imsettings.php:183 +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Xa é a túa conta de Jabber." -#: ../actions/emailsettings.php:188 -#: actions/emailsettings.php:206 -#: actions/emailsettings.php:212 +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Xa é o teu enderezo de correo." -#: ../actions/smssettings.php:188 -#: actions/smssettings.php:196 -#: actions/smspostsettings.php:83 -#: actions/smssettings.php:198 -#: actions/smspostsettings.php:88 +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Xa é o teu número de teléfono." -#: ../actions/imsettings.php:233 -#: actions/imsettings.php:241 -#: actions/imsettings.php:246 +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Esa non é a túa conta Jabber." -#: ../actions/emailsettings.php:249 -#: actions/emailsettings.php:267 -#: actions/emailsettings.php:271 +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esa non é a túa dirección de correo." -#: ../actions/smssettings.php:257 -#: actions/smssettings.php:265 -#: actions/smspostsettings.php:113 -#: actions/smssettings.php:267 -#: actions/smspostsettings.php:118 +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Ese non é o teu número de teléfono." -#: ../actions/emailsettings.php:226 -#: ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:218 -#: actions/emailsettings.php:248 -#: actions/imsettings.php:223 +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Esa é unha enderezo IM incorrecto." -#: ../actions/smssettings.php:233 -#: actions/smssettings.php:241 -#: actions/smssettings.php:243 +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Ese é un número de confirmación incorrecto." -#: ../actions/smssettings.php:191 -#: actions/smssettings.php:199 -#: actions/smspostsettings.php:86 -#: actions/smssettings.php:201 -#: actions/smspostsettings.php:91 +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "O número de teléfono xa pertence a outro usuario." -#: ../actions/newnotice.php:49 -#: ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 -#: actions/twitapistatuses.php:330 -#: actions/newnotice.php:61 -#: actions/newsmsnotice.php:73 -#: actions/twitapistatuses.php:271 -#: actions/newsmsnotice.php:79 +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." -#: ../actions/twitapiaccount.php:74 -#: actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:58 +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." -#: ../actions/confirmaddress.php:92 -#: actions/confirmaddress.php:92 +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." -#: ../actions/emailsettings.php:264 -#: ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 -#: actions/emailsettings.php:282 -#: actions/imsettings.php:258 -#: actions/smssettings.php:282 -#: actions/emailsettings.php:286 -#: actions/imsettings.php:263 -#: actions/smspostsettings.php:128 -#: actions/smssettings.php:284 -#: actions/smspostsettings.php:133 +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Enderezo eliminado." -#: ../actions/userauthorization.php:312 -#: actions/userauthorization.php:324 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" -#: ../actions/userauthorization.php:322 -#: actions/userauthorization.php:334 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." -#: ../actions/subscribers.php:35 -#: actions/subscribers.php:35 +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Esa é a xente que escoita os chíos de %s." -#: ../actions/subscribers.php:33 -#: actions/subscribers.php:33 +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Esa é a xente que escoita os teus chíos." -#: ../actions/subscriptions.php:35 -#: actions/subscriptions.php:35 +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." -#: ../actions/subscriptions.php:33 -#: actions/subscriptions.php:33 +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" -#: ../actions/invite.php:89 -#: actions/invite.php:96 -msgid "These people are already users and you were automatically subscribed to them:" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" -#: ../actions/recoverpassword.php:88 -#: actions/recoverpassword.php:91 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." -#: ../lib/openid.php:195 -#: lib/openid.php:195 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Este formulario debería enviarse automáticamente. Se non é así, fai clic no botón de enviar para ir ó teu proveedro OpenID." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Este formulario debería enviarse automáticamente. Se non é así, fai clic no " +"botón de enviar para ir ó teu proveedro OpenID." -#: ../actions/finishopenidlogin.php:56 -#: actions/finishopenidlogin.php:61 +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Esta é a primeria vez que accedes a %s polo que debes conectar o teu enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou conectarte cunha existente, se xa tes unha." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Esta é a primeria vez que accedes a %s polo que debes conectar o teu " +"enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou " +"conectarte cunha existente, se xa tes unha." -#: ../actions/twitapifriendships.php:108 -#: ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 -#: actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 -#: actions/twitapifavorites.php:94 -#: actions/twitapifriendships.php:82 -#: actions/twitapistatuses.php:428 +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método require un POST ou DELETE." -#: ../actions/twitapiaccount.php:65 -#: ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 -#: actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 -#: actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:117 -#: actions/twitapifriendships.php:30 -#: actions/twitapistatuses.php:239 +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método require un POST." -#: ../lib/util.php:164 -#: lib/util.php:246 -#: lib/util.php:263 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso Horario" -#: ../actions/profilesettings.php:107 -#: actions/profilesettings.php:222 -#: actions/profilesettings.php:241 +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" -#: ../actions/remotesubscribe.php:43 -#: actions/remotesubscribe.php:51 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil abaixo." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" +"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " +"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " +"abaixo." -#: ../actions/twitapifriendships.php:163 -#: actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:128 +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "Dous identificadores de usuario ou nomes_en_pantalla deben ser proporcionados." +msgstr "" +"Dous identificadores de usuario ou nomes_en_pantalla deben ser " +"proporcionados." -#: ../actions/profilesettings.php:48 -#: ../actions/register.php:169 -#: actions/profilesettings.php:81 -#: actions/register.php:183 -#: actions/profilesettings.php:83 -#: actions/register.php:210 +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: ../actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:83 +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" -#: ../actions/emailsettings.php:130 -#: ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 -#: ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 -#: actions/imsettings.php:118 -#: actions/recoverpassword.php:39 -#: actions/smssettings.php:143 -#: actions/twittersettings.php:108 -#: actions/emailsettings.php:148 -#: actions/imsettings.php:121 -#: actions/othersettings.php:146 -#: actions/smspostsettings.php:64 -#: actions/smssettings.php:145 -#: actions/twittersettings.php:199 -#: actions/smspostsettings.php:69 +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Envio de formulario non esperada." -#: ../actions/recoverpassword.php:276 -#: actions/recoverpassword.php:289 +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restauración de contrasinal non esperada." -#: ../index.php:57 -#: index.php:57 +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acción descoñecida" #: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 -#: actions/finishremotesubscribe.php:59 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Versión de protocolo OMB descoñecida." -#: ../lib/util.php:269 -#: lib/util.php:285 -#: lib/util.php:302 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Aínda que especifiques outro, os contidos de este sitio teñen copyright polos contribuidores e está dispoñible baixo " +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Aínda que especifiques outro, os contidos de este sitio teñen copyright " +"polos contribuidores e está dispoñible baixo " -#: ../actions/confirmaddress.php:48 -#: actions/confirmaddress.php:48 +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "Tipo de enderezo %s non recoñecido" -#: ../actions/showstream.php:209 -#: actions/showstream.php:219 -#: actions/showstream.php:267 -#: lib/util.php:2153 +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Eliminar subscrición" -#: ../actions/postnotice.php:44 -#: ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 -#: actions/updateprofile.php:46 +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versión OMB non soportada" -#: ../actions/avatar.php:105 -#: actions/profilesettings.php:342 -#: actions/profilesettings.php:388 +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de ficheiro de imaxe non soportado." -#: ../lib/settingsaction.php:100 -#: lib/settingsaction.php:94 -#: actions/deleteprofile.php:251 +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Chíos dende SMS" -#: ../lib/settingsaction.php:103 -#: lib/settingsaction.php:97 -#: actions/deleteprofile.php:254 -#: lib/settingsaction.php:101 -#: lib/settingsaction.php:103 +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Chíos dende mensaxería instantánea (IM)" -#: ../actions/twitapistatuses.php:241 -#: actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:126 +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" -#: ../actions/twitapistatuses.php:341 -#: actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:198 +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/avatar.php:68 -#: actions/profilesettings.php:161 -#: actions/profilesettings.php:178 +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Subir" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e que queiras compartir." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a " +"imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. " +"Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e " +"que queiras compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" msgstr "Subir unha nova imaxe de usuario" -#: ../actions/invite.php:114 -#: actions/invite.php:121 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." -#: ../actions/register.php:159 -#: ../actions/register.php:162 -#: actions/register.php:173 -#: actions/register.php:176 -#: actions/register.php:200 -#: actions/register.php:203 +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 -#: actions/finishremotesubscribe.php:92 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." msgstr "O usuario que está sendo escoitado non existe." -#: ../actions/all.php:41 -#: ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 -#: ../actions/replies.php:41 -#: ../actions/showstream.php:44 -#: ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 -#: ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 -#: actions/all.php:41 -#: actions/avatarbynickname.php:48 -#: actions/foaf.php:47 -#: actions/replies.php:41 -#: actions/showfavorites.php:41 -#: actions/showstream.php:44 -#: actions/twitapiaccount.php:80 -#: actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 -#: actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 -#: lib/mailbox.php:50 -#: actions/showstream.php:57 -#: actions/twitapiaccount.php:66 -#: actions/twitapifavorites.php:40 -#: actions/twitapistatuses.php:163 -#: actions/twitapistatuses.php:492 -#: actions/twitapiusers.php:53 +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "O usuario non ten perfil." -#: ../actions/remotesubscribe.php:71 -#: actions/remotesubscribe.php:80 +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Alcume de usuario" -#: ../actions/twitapiusers.php:75 -#: actions/twitapiusers.php:80 +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." msgstr "Usuario non atopado." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "En que fuso horario estas normalmente?" -#: ../lib/util.php:1159 -#: lib/util.php:1293 -#: lib/util.php:1689 +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "¿Que pasa, %s?" -#: ../actions/profilesettings.php:54 -#: ../actions/register.php:175 -#: actions/profilesettings.php:87 -#: actions/register.php:189 -#: actions/profilesettings.php:89 -#: actions/register.php:216 +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" -#: ../actions/updateprofile.php:128 -#: actions/updateprofile.php:129 +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imaxe incorrecto para '%s'" -#: ../actions/updateprofile.php:123 -#: actions/updateprofile.php:124 +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamaño de imaxe incorrecto en '%s'" -#: ../actions/deletenotice.php:63 -#: ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 -#: actions/deletenotice.php:79 -#: actions/block.php:105 +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Si" -#: ../actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:64 +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "¡Xa tes esa OpenID!" -#: ../actions/deletenotice.php:37 -#: actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" -#: ../actions/recoverpassword.php:31 -#: actions/recoverpassword.php:31 +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "¡Xa estás logueado!" -#: ../actions/invite.php:81 -#: actions/invite.php:88 +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Xa estas suscrito a estes usuarios:" -#: ../actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:102 +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No tes amigos con un usuario específico." @@ -3075,57 +3063,63 @@ msgstr "No tes amigos con un usuario específico." msgid "You can change your password here. Choose a good one!" msgstr "Podes cambiar a túa contrasinal aquí. ¡Escolle unha boa!" -#: ../actions/register.php:135 -#: actions/register.php:145 +#: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." msgstr "Podes crear unha nova conta para comezar a escribir chíos." -#: ../actions/smssettings.php:28 -#: actions/smssettings.php:28 +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." -#: ../actions/openidsettings.php:86 -#: actions/openidsettings.php:87 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Podes eliminar unha OpenID da túa conta facendo clic no botón marcado \"Eliminar\"." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Podes eliminar unha OpenID da túa conta facendo clic no botón marcado " +"\"Eliminar\"." -#: ../actions/imsettings.php:28 -#: actions/imsettings.php:28 +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos](%%doc.im%%). Configura a túa conta e configuracións abaixo." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" +"(%%doc.im%%). Configura a túa conta e configuracións abaixo." -#: ../actions/profilesettings.php:27 -#: actions/profilesettings.php:27 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Podes actualizar a túa información do perfil persoal aquí para que a xente che poida coñecer mellor." +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Podes actualizar a túa información do perfil persoal aquí para que a xente " +"che poida coñecer mellor." -#: ../actions/finishremotesubscribe.php:31 -#: ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 -#: actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:83 -#: actions/finishremotesubscribe.php:99 +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Podes empregar a túa subscrición local!" -#: ../actions/finishopenidlogin.php:33 -#: ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 -#: actions/register.php:68 -#: actions/register.php:77 +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: ../actions/updateprofile.php:63 -#: actions/updateprofile.php:64 +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Non nos enviaches ese perfil" -#: ../lib/mail.php:147 -#: lib/mail.php:141 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3146,231 +3140,208 @@ msgstr "" "Sempre teu...,\n" "%4$s" -#: ../actions/twitapistatuses.php:612 -#: actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:455 +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Non deberías eliminar o estado de outro usuario" -#: ../actions/invite.php:31 -#: actions/invite.php:31 +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/invite.php:103 -#: actions/invite.php:110 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Notificaráseche cando os teus invitados acepten unha invitación e se rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Notificaráseche cando os teus invitados acepten unha invitación e se " +"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" -#: ../actions/recoverpassword.php:149 -#: actions/recoverpassword.php:154 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." -#: ../actions/openidlogin.php:67 -#: actions/openidlogin.php:76 -#: actions/login.php:127 -#: actions/openidlogin.php:84 +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "O teu enderezo OpenID" -#: ../actions/recoverpassword.php:164 -#: actions/recoverpassword.php:169 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." -#: ../actions/openidsettings.php:28 -#: actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." -#: ../lib/util.php:943 -#: lib/util.php:992 -#: lib/util.php:1349 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "fai uns segundos" -#: ../lib/util.php:955 -#: lib/util.php:1004 -#: lib/util.php:1361 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: ../lib/util.php:951 -#: lib/util.php:1000 -#: lib/util.php:1357 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: ../lib/util.php:947 -#: lib/util.php:996 -#: lib/util.php:1353 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: ../lib/util.php:959 -#: lib/util.php:1008 -#: lib/util.php:1365 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: ../lib/util.php:953 -#: lib/util.php:1002 -#: lib/util.php:1359 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "fai un día" -#: ../lib/util.php:945 -#: lib/util.php:994 -#: lib/util.php:1351 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "fai un minuto" -#: ../lib/util.php:957 -#: lib/util.php:1006 -#: lib/util.php:1363 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "fai un mes" -#: ../lib/util.php:961 -#: lib/util.php:1010 -#: lib/util.php:1367 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "fai un ano" -#: ../lib/util.php:949 -#: lib/util.php:998 -#: lib/util.php:1355 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "fai unha hora" -#: ../actions/showstream.php:423 -#: ../lib/stream.php:132 -#: actions/showstream.php:441 -#: lib/stream.php:99 -#: lib/noticelist.php:211 +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 msgid "delete" msgstr "eliminar" -#: ../actions/noticesearch.php:130 -#: ../actions/showstream.php:408 -#: ../lib/stream.php:117 -#: actions/noticesearch.php:136 -#: actions/showstream.php:426 -#: lib/stream.php:84 -#: actions/noticesearch.php:135 -#: lib/facebookaction.php:202 -#: lib/noticelist.php:189 +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." msgstr "en contestación a..." -#: ../actions/noticesearch.php:137 -#: ../actions/showstream.php:415 -#: ../lib/stream.php:124 -#: actions/noticesearch.php:143 -#: actions/showstream.php:433 -#: lib/stream.php:91 -#: actions/noticesearch.php:142 -#: lib/noticelist.php:199 +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" msgstr "contestar" -#: ../actions/password.php:44 -#: actions/profilesettings.php:183 -#: actions/profilesettings.php:200 +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "igual á contrasinal de enriba" -#: ../actions/twitapistatuses.php:755 -#: actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:543 +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de ficheiro non soportado" -#: ../lib/util.php:1309 -#: lib/util.php:1443 -#: lib/facebookaction.php:251 -#: lib/util.php:1842 +#: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« Despois" -#: actions/deletenotice.php:74 -#: actions/disfavor.php:43 -#: actions/emailsettings.php:127 -#: actions/favor.php:45 -#: actions/finishopenidlogin.php:33 -#: actions/imsettings.php:105 -#: actions/invite.php:46 -#: actions/newmessage.php:45 -#: actions/openidlogin.php:36 -#: actions/openidsettings.php:123 -#: actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 -#: actions/register.php:42 -#: actions/remotesubscribe.php:40 -#: actions/smssettings.php:124 -#: actions/subscribe.php:44 -#: actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 -#: actions/userauthorization.php:35 -#: actions/block.php:38 -#: actions/deleteprofile.php:127 -#: actions/disfavor.php:47 -#: actions/emailsettings.php:131 -#: actions/favor.php:49 -#: actions/imsettings.php:108 -#: actions/login.php:45 -#: actions/newmessage.php:44 -#: actions/newnotice.php:36 -#: actions/nudge.php:47 -#: actions/othersettings.php:139 -#: actions/profilesettings.php:49 -#: actions/smssettings.php:126 -#: actions/subedit.php:38 -#: actions/tagother.php:113 -#: actions/twittersettings.php:188 -#: actions/unblock.php:38 +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/disfavor.php:55 +#: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Este chío non é un favorito!" -#: actions/disfavor.php:63 +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/disfavor.php:72 +#: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" msgstr "Gostame" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." -#: actions/emailsettings.php:95 +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: actions/favor.php:53 -#: actions/twitapifavorites.php:142 -#: actions/favor.php:54 -#: actions/twitapifavorites.php:115 +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Este chío xa é un favorito!" -#: actions/favor.php:60 -#: actions/twitapifavorites.php:151 -#: classes/Command.php:132 -#: actions/favor.php:61 -#: actions/twitapifavorites.php:122 +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -3378,104 +3349,109 @@ msgstr "Non se puido crear o favorito." msgid "Disfavor" msgstr "Non me gosta" -#: actions/favoritesrss.php:60 -#: actions/showfavorites.php:47 -#: actions/favoritesrss.php:62 +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s chíos favoritos" -#: actions/favoritesrss.php:64 -#: actions/favoritesrss.php:66 +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Fonte para os chíos favoritos de %s" -#: actions/inbox.php:28 +#: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" msgstr "Band. Entrada para %s - páxina %d" -#: actions/inbox.php:30 +#: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" msgstr "Band. Entrada para %s" -#: actions/inbox.php:53 +#: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." +msgstr "" +"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." -#: actions/invite.php:178 +#: actions/invite.php:178 actions/invite.php:213 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" msgstr "Acabas de invitar a %1$s a unirse a %2$s (%3$s).\n" -#: actions/login.php:104 +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 msgid "Automatically login in the future; " msgstr "Loguearse automáticamente no futuro:" -#: actions/login.php:122 +#: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " msgstr "Por razóns de seguranza, por favor re-insire o teu " -#: actions/login.php:126 +#: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " msgstr "Accede co teu nome de usuario e contrasinal." -#: actions/newmessage.php:58 -#: actions/twitapidirect_messages.php:130 -#: actions/newmessage.php:60 -#: actions/twitapidirect_messages.php:136 +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." -#: actions/newmessage.php:65 -#: actions/newmessage.php:68 +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Non se especificou ningún destinatario" -#: actions/newmessage.php:68 -#: actions/newmessage.php:113 -#: classes/Command.php:206 -#: actions/newmessage.php:71 -#: actions/newmessage.php:116 -#: classes/Command.php:211 +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Non podes enviar mensaxes a este usurio." -#: actions/newmessage.php:71 -#: actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 -#: actions/newmessage.php:74 -#: actions/twitapidirect_messages.php:153 -#: classes/Command.php:214 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón vante tomar por tolo." +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " +"vante tomar por tolo." -#: actions/newmessage.php:108 -#: actions/microsummary.php:32 -#: actions/newmessage.php:111 +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Non é o usuario" -#: actions/newmessage.php:117 -#: actions/newmessage.php:120 +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nova mensaxe" -#: actions/noticesearch.php:95 -#: actions/noticesearch.php:94 +#: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" msgstr "Chío sen perfil coincidente" -#: actions/openidsettings.php:28 +#: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios" -#: actions/openidsettings.php:46 +#: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " msgstr "Se queres engadir un enderezo OpenID á tua conta, " @@ -3483,185 +3459,208 @@ msgstr "Se queres engadir un enderezo OpenID á tua conta, " msgid "Removing your only OpenID would make it impossible to log in! " msgstr "Eliminando o teu enderezo OpenID serache imposíbel acceder!" -#: actions/openidsettings.php:87 +#: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " msgstr "Podes eliminar un identificador OpenID da túa conta " -#: actions/outbox.php:28 +#: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" msgstr "Band. Saída para %s - páxina %d" -#: actions/outbox.php:30 +#: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Band. Saída para %s" -#: actions/outbox.php:53 +#: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." +msgstr "" +"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." -#: actions/peoplesearch.php:28 +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " -#: actions/profilesettings.php:27 +#: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/profilesettings.php:115 -#: actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 -#: actions/userrss.php:76 -#: actions/profilesettings.php:132 -#: actions/remotesubscribe.php:333 +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuario sen un perfil que coincida." -#: actions/recoverpassword.php:91 +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " msgstr "Ese código de confirmación é demasiado antigo." -#: actions/recoverpassword.php:141 +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" msgstr "Se esquenciches ou perdeches a túa" -#: actions/recoverpassword.php:154 +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " msgstr "Foches identificado. Insire unha " -#: actions/recoverpassword.php:169 +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "O teu alcume neste servidor, " -#: actions/recoverpassword.php:271 +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " msgstr "Instruccións para recuperar a túa contrasinal." -#: actions/recoverpassword.php:327 +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " msgstr "A nova contrasinal foi gardada correctamente." -#: actions/register.php:95 -#: actions/register.php:104 +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "A contrasinal debe ter 6 caracteres ou máis." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" -#: actions/remotesubscribe.php:51 +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para suscribirse, podes [loguearte](%%action.login%%)," -#: actions/showfavorites.php:61 +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Fonte para os favoritos de %s" -#: actions/showfavorites.php:84 -#: actions/twitapifavorites.php:85 -#: actions/showfavorites.php:88 -#: actions/twitapifavorites.php:57 +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Non se pode " -#: actions/showmessage.php:33 +#: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." msgstr "Non existe a mensaxe." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Só o emisor e destinatario poden ler esta mensaxe." -#: actions/showmessage.php:61 +#: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" -#: actions/showmessage.php:66 +#: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensaxe dende %1$s en %2$s" #: actions/showstream.php:154 -#: lib/util.php:2164 msgid "Send a message" msgstr "Enviar unha mensaxe" -#: actions/smssettings.php:312 +#: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " msgstr "Operadora móbil do teu teléfono." -#: actions/twitapidirect_messages.php:76 -#: actions/twitapidirect_messages.php:64 +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensaxes directas para %s" -#: actions/twitapidirect_messages.php:77 -#: actions/twitapidirect_messages.php:65 +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tódalas mensaxes directas enviadas a %s" -#: actions/twitapidirect_messages.php:81 -#: actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensaxes Directas que Enviaches." -#: actions/twitapidirect_messages.php:82 -#: actions/twitapidirect_messages.php:70 +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tódalas mensaxes directas enviadas dende %s" #: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:132 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Non hai mensaxes de texto!" #: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:145 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Usuario destinatario non atopado." #: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:148 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." +msgstr "" +"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." -#: actions/twitapifavorites.php:92 -#: actions/twitapifavorites.php:64 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritos dende %s" -#: actions/twitapifavorites.php:95 -#: actions/twitapifavorites.php:67 +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s updates favorited by %s / %s." -#: actions/twitapifavorites.php:187 -#: lib/mail.php:275 -#: actions/twitapifavorites.php:158 -#: lib/mail.php:293 +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s gustoulle o teu chío" -#: actions/twitapifavorites.php:188 -#: lib/mail.php:276 +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 #, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" @@ -3671,21 +3670,24 @@ msgstr "" "\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." -#: actions/twittersettings.php:41 -#: actions/twittersettings.php:43 +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuracións de Twitter" -#: actions/twittersettings.php:48 -#: actions/twittersettings.php:50 +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Conta de Twitter" -#: actions/twittersettings.php:56 -#: actions/twittersettings.php:58 +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Conta de twitter verificada actualmente." @@ -3693,7 +3695,8 @@ msgstr "Conta de twitter verificada actualmente." msgid "Twitter Username" msgstr "Nome de usuario en Twitter" -#: actions/twittersettings.php:65 +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sen espazos, anda..." @@ -3701,230 +3704,242 @@ msgstr "Sen espazos, anda..." msgid "Twitter Password" msgstr "Contrasinal de Twitter" -#: actions/twittersettings.php:72 +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar automáticamente os meus chíos a Twitter." -#: actions/twittersettings.php:75 +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respostas \"@\" locais a Twitter." -#: actions/twittersettings.php:78 +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Suscribirse ós meus amigos de Twitter aquí." -#: actions/twittersettings.php:122 -#: actions/twittersettings.php:216 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e sen espazos." +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e " +"sen espazos." -#: actions/twittersettings.php:128 -#: actions/twittersettings.php:221 +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Non se puideron verificar as túas credenciais en Twitter!" #: actions/twittersettings.php:137 -#: actions/twittersettings.php:228 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." -#: actions/twittersettings.php:151 -#: actions/twittersettings.php:170 -#: actions/twittersettings.php:234 -#: actions/twittersettings.php:253 +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Non se puideron gardar os teus axustes de Twitter!" -#: actions/twittersettings.php:174 -#: actions/twittersettings.php:261 +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuracións de Twitter gardadas." -#: actions/twittersettings.php:192 -#: actions/twittersettings.php:272 +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Esa non é a túa conta de Twitter." -#: actions/twittersettings.php:200 -#: actions/twittersettings.php:208 -#: actions/twittersettings.php:280 +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Non se puido eliminar o usuario." -#: actions/twittersettings.php:212 -#: actions/twittersettings.php:284 +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Conta de Twitter " -#: actions/twittersettings.php:225 -#: actions/twittersettings.php:239 -#: actions/twittersettings.php:299 -#: actions/twittersettings.php:310 -#: actions/twittersettings.php:322 +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Non se puideron gardar as preferenzas de Twitter." -#: actions/twittersettings.php:245 -#: actions/twittersettings.php:330 +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferencias de Twitter gardadas." -#: actions/userauthorization.php:84 +#: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " msgstr "Comproba estes datos para asegurarte" -#: actions/userauthorization.php:324 +#: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " msgstr "A suscrición foi autorizada, pero non" -#: actions/userauthorization.php:334 +#: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " msgstr "A suscrición foi rexeitada, pero non" -#: classes/Channel.php:113 -#: classes/Channel.php:129 +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados do comando" -#: classes/Channel.php:148 -#: classes/Channel.php:175 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completo" -#: classes/Channel.php:158 -#: classes/Channel.php:185 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando fallido" -#: classes/Command.php:39 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Desculpa, este comando todavía non está implementado." -#: classes/Command.php:96 +#: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" msgstr "Subscricións: %1$s.\n" -#: classes/Command.php:125 -#: classes/Command.php:242 -#: classes/Command.php:247 +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "O usuario non ten último chio." -#: classes/Command.php:146 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." -#: classes/Command.php:166 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" -#: classes/Command.php:175 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" -#: classes/Command.php:178 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 -#: classes/Command.php:202 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: classes/Command.php:214 -#: classes/Command.php:219 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Mensaxe directo a %s enviado" -#: classes/Command.php:216 -#: classes/Command.php:221 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." -#: classes/Command.php:263 -#: classes/Command.php:268 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifica o nome do usuario ó que queres suscribirte" -#: classes/Command.php:270 -#: classes/Command.php:275 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: classes/Command.php:288 -#: classes/Command.php:293 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica o nome de usuario ó que queres deixar de seguir" -#: classes/Command.php:295 -#: classes/Command.php:300 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscribir de %s" -#: classes/Command.php:310 -#: classes/Command.php:330 -#: classes/Command.php:315 -#: classes/Command.php:335 +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comando non implementado." -#: classes/Command.php:313 -#: classes/Command.php:318 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificación desactivada." -#: classes/Command.php:315 -#: classes/Command.php:320 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." -#: classes/Command.php:333 -#: classes/Command.php:338 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificación habilitada." -#: classes/Command.php:335 -#: classes/Command.php:340 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." -#: classes/Command.php:344 +#: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Non se pode inserir unha mensaxe." -#: classes/Message.php:63 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." #: lib/gallery.php:46 -#: lib/gallery.php:55 msgid "User without matching profile in system." msgstr "Usuario sen perfil coincidente no sistema." -#: lib/mail.php:147 +#: lib/mail.php:147 lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3933,13 +3948,12 @@ msgstr "" "Tes novas direccións de posteo en %1$s.\n" "\n" -#: lib/mail.php:249 -#: lib/mail.php:265 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s enviouche unha nova mensaxe privada" -#: lib/mail.php:253 +#: lib/mail.php:253 lib/mail.php:512 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -3948,382 +3962,2036 @@ msgstr "" "%1$s (%2$s) enviouche unha mensaxe privada:\n" "\n" -#: lib/mailbox.php:43 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Só o usuario pode ler os seus propios buzóns." -#: lib/openid.php:195 +#: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " msgstr "Este formulario debería enviarse automáticamente él mesmo." -#: lib/personal.php:65 +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritos" -#: lib/personal.php:66 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Chíos favoritos de %s" -#: lib/personal.php:66 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" -#: lib/personal.php:75 +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Band. Entrada" -#: lib/personal.php:76 +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "As túas mensaxes entrantes" -#: lib/personal.php:80 +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Band. Saída" -#: lib/personal.php:81 +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "As túas mensaxes enviadas" -#: lib/settingsaction.php:99 -#: actions/deleteprofile.php:256 -#: lib/settingsaction.php:103 -#: lib/settingsaction.php:105 +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" msgstr "Twitter" -#: lib/settingsaction.php:100 -#: actions/deleteprofile.php:257 -#: lib/settingsaction.php:104 -#: lib/settingsaction.php:106 +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" msgstr "Opcións de integración de Twitter" -#: lib/util.php:1718 -#: lib/util.php:2204 +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" -#: scripts/maildaemon.php:45 +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Non se puido analizaar a mensaxe." -#: actions/block.php:45 -#: actions/subedit.php:45 -#: actions/unblock.php:45 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:76 +#, fuzzy +msgid "You can upload your personal avatar." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Configuracións de Twitter" + +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +#, fuzzy +msgid "There was a problem with your session token. " +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Bloqueo de usuario fallido." + +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +#, fuzzy +msgid "Unknown file type" +msgstr "tipo de ficheiro non soportado" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#: actions/block.php:52 -#: actions/subedit.php:52 -#: actions/tagother.php:45 -#: actions/unblock.php:52 +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Non se atopou un perfil con ese ID." -#: actions/block.php:78 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquear usuario" -#: actions/block.php:81 -msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." -msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." +#: actions/block.php:129 +#, fuzzy +msgid "Are you sure you want to block this user? " +msgstr "Estas seguro que queres eliminar este chío?" -#: actions/block.php:117 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Xa bloqueaches a este usuario." -#: actions/block.php:124 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." -#: actions/deleteprofile.php:25 -msgid "Code not yet ready." -msgstr "Código non implementado." +#: actions/confirmaddress.php:159 +#, fuzzy, php-format +msgid "The address \"%s\" has been " +msgstr "Enderezo eliminado." -#: actions/deleteprofile.php:36 -msgid "Export and delete your user information." -msgstr "Exportar e eliminar a túa información de usuario." +#: actions/deletenotice.php:73 +#, fuzzy +msgid "You are about to permanently delete a notice. " +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" -#: actions/deleteprofile.php:88 -#: actions/deleteprofile.php:119 -msgid "Delete my account" -msgstr "Borrar a miña conta" - -#: actions/deleteprofile.php:89 -msgid "Delete my account confirmation" -msgstr "Confirmación de borrado da miña conta" - -#: actions/deleteprofile.php:117 -msgid "Check if you are sure you want to delete your account." -msgstr "Estas seguro que queres eliminar a tua conta?" - -#: actions/deleteprofile.php:259 -#: lib/settingsaction.php:106 -#: lib/util.php:384 -#: lib/settingsaction.php:108 -msgid "Other" -msgstr "Outros" - -#: actions/deleteprofile.php:260 -#: lib/settingsaction.php:107 -#: lib/settingsaction.php:109 -msgid "Other options" -msgstr "Outras opcions" - -#: actions/disfavor.php:72 +#: actions/disfavor.php:94 msgid "Add to favorites" msgstr "Engadir a favoritos" -#: actions/emailsettings.php:98 +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#, fuzzy +msgid "No nickname" +msgstr "Sen alcume." + +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Non é o usuario" + +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +#, fuzzy +msgid "You must be an admin to edit the group" +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#, fuzzy +msgid "Nickname must have only lowercase letters " +msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." + +#: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 +#, fuzzy +msgid "description is too long (max 140 chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." + +#: actions/editgroup.php:218 actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Non se puido actualizar o usuario." + +#: actions/editgroup.php:226 actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Configuracións gardadas." + +#: actions/emailsettings.php:107 actions/imsettings.php:108 +#, fuzzy, php-format +msgid "Awaiting confirmation on this address. " +msgstr "Agardando a confirmación neste número de teléfono." + +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#, fuzzy +msgid "Make a new email address for posting to; " +msgstr "Nova dirección de email para posterar en %s" + +#: actions/emailsettings.php:157 +#, fuzzy +msgid "Send me email when someone " +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." -#: actions/facebookremove.php:54 +#: actions/emailsettings.php:321 +#, fuzzy +msgid "That email address already belongs " +msgstr "Este enderezo de correo xa pertence a outro usuario." + +#: actions/emailsettings.php:343 +#, fuzzy +msgid "A confirmation code was sent to the email address you added. " +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 +#, fuzzy +msgid "No notice content!" +msgstr "Sen contido!" + +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +#, fuzzy +msgid "After" +msgstr "« Despois" + +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Antes »" + +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +#, fuzzy +msgid "Invitations have been sent to the following users:" +msgstr "Invitación(s) enviada(s) á seguinte xente:" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, fuzzy, php-format +msgid "You have been invited to %s" +msgstr "%s douche un toque" + +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 +#, fuzzy, php-format +msgid "Invite your friends to use %s" +msgstr "Fonte para os amigos de %s" + +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + +#: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Non se puido eliminar o usuario de Facebook." -#: actions/favorited.php:31 -#: lib/stream.php:48 -msgid "Popular notices" -msgstr "Chíos populares" +#: actions/facebooksettings.php:65 +#, fuzzy +msgid "There was a problem saving your sync preferences!" +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/favorited.php:54 -msgid "Showing recently popular notices" -msgstr "Amosando chíos populares recentes" +#: actions/facebooksettings.php:67 +#, fuzzy +msgid "Sync preferences saved." +msgstr "Preferencias gardadas." -#: actions/favor.php:71 +#: actions/facebooksettings.php:90 +#, fuzzy +msgid "Automatically update my Facebook status with my notices." +msgstr "Enviar automáticamente os meus chíos a Twitter." + +#: actions/facebooksettings.php:97 +#, fuzzy +msgid "Send \"@\" replies to Facebook." +msgstr "Enviar respostas \"@\" locais a Twitter." + +#: actions/facebooksettings.php:106 +#, fuzzy +msgid "Prefix" +msgstr "Perfil" + +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + +#: actions/facebooksettings.php:147 +#, fuzzy +msgid "Sync preferences" +msgstr "Preferencias" + +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Desactivar favorito" -#: actions/featured.php:32 -#: actions/featured.php:54 -#: lib/stream.php:44 +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 +msgid "Popular notices" +msgstr "Chíos populares" + +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Chíos populares" + +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Amoa os tags máis populares dende a semana pasada" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuarios destacados" -#: actions/finishremotesubscribe.php:186 +#: actions/featured.php:71 +#, fuzzy, php-format +msgid "Featured users, page %d" +msgstr "Usuarios destacados" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Este usuario non che permite suscribirte a el." -#: actions/imsettings.php:83 -msgid "Send me notices from public timeline through Jabber/GTalk." -msgstr "Enviarme os chíos da liña de tempo pública a través de Jabber/GTalk." +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: actions/login.php:120 -msgid "you can also login using OpenID" -msgstr "tamén te podes rexistrar cunha conta OpenID" +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: actions/microsummary.php:39 +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar actualizado." + +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Acounteceu un fallo ó actualizar o avatar." + +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Crear nova conta" + +#: actions/groupsearch.php:57 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " + +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Procurar xente." + +#: actions/imsettings.php:70 +#, fuzzy +msgid "You can send and receive notices through " +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +#, fuzzy +msgid "Send me replies through Jabber/GTalk " +msgstr "Enviarme advertencias a través de Jabber/GTalk." + +#: actions/imsettings.php:321 +#, fuzzy, php-format +msgid "A confirmation code was sent " +msgstr "Sen código de confirmación." + +#: actions/joingroup.php:65 actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Xa estas suscrito a estes usuarios:" + +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, fuzzy, php-format +msgid "%s joined group %s" +msgstr "%s / Favoritos dende %s" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Non existe a etiqueta." + +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Non estás suscrito a ese perfil" + +#: actions/leavegroup.php:100 +#, fuzzy +msgid "You may not leave a group while you are its administrator." +msgstr "Non deberías eliminar o estado de outro usuario" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Non se puido actualizar o rexistro de usuario." + +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 msgid "No current status" msgstr "Sen estado actual" -#: actions/misc.php:81 -msgid "Embedded" -msgstr "Embebida" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: actions/misc.php:82 -#, php-format -msgid "Embedded %1s" -msgstr "%1s embebida" +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" -#: actions/misc.php:84 -msgid "WP" -msgstr "WP" +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Non se puido crear o favorito." -#: actions/newnotice.php:93 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Non se pode gardar a subscrición." + +#: actions/newmessage.php:119 actions/newnotice.php:132 +#, fuzzy +msgid "That's too long. " +msgstr "Ese arquivo é demasiado grande." + +#: actions/newmessage.php:134 +#, fuzzy +msgid "Don't send a message to yourself; " +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Chío publicado" -#: actions/newnotice.php:116 -#: classes/Channel.php:140 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erro de Ajax" -#: actions/nudge.php:52 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Este usuario non permite toques, ou non confirmou ainda o seu correo electrónico." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Este usuario non permite toques, ou non confirmou ainda o seu correo " +"electrónico." -#: actions/nudge.php:61 +#: actions/nudge.php:94 msgid "Nudge sent" msgstr "Toque enviado" -#: actions/othersettings.php:27 -msgid "Manage various other options." -msgstr "Xestionár axustes varios." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Toque enviado!" -#: actions/othersettings.php:33 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#, fuzzy +msgid "OpenID login" +msgstr "Acceso OpenID" + +#: actions/openidsettings.php:128 +#, fuzzy +msgid "Removing your only OpenID " +msgstr "Eliminar OpenID" + +#: actions/othersettings.php:60 msgid "Other Settings" msgstr "Outros axustes" -#: actions/othersettings.php:35 +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Xestionár axustes varios." + +#: actions/othersettings.php:93 msgid "URL Auto-shortening" msgstr "Auto-acortado de URL" -#: actions/othersettings.php:54 +#: actions/othersettings.php:112 msgid "Service" msgstr "Servizo" -#: actions/othersettings.php:54 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servizo de acortado automático a usar." -#: actions/othersettings.php:155 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." -#: actions/peopletag.php:33 +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Cambiar contrasinal" + +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Contrasinal gardada." + +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "%s non é unha etiqueta de xente válida" -#: actions/peopletag.php:45 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: actions/peopletag.php:87 -#, php-format -msgid "These are users who have tagged themselves \"%s\" to show a common interest, characteristic, hobby or job." -msgstr "Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar intereses comuns, características, aficións ou traballos." +#: actions/peopletag.php:91 +#, fuzzy, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" +"Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar " +"intereses comuns, características, aficións ou traballos." -#: actions/profilesettings.php:92 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por coma ou espazo" +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Perfil descoñecido" -#: actions/profilesettings.php:116 -msgid "Theme" -msgstr "Tema" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " +"coma ou espazo" -#: actions/profilesettings.php:116 -msgid "Preferred theme" -msgstr "Tema preferido" +#: actions/profilesettings.php:144 +#, fuzzy +msgid "Automatically subscribe to whoever " +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" -#: actions/profilesettings.php:259 -#: actions/tagother.php:131 +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: '%s'" -#: actions/profilesettings.php:345 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." -#: actions/public.php:68 -#, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Liña de tempo pública" -#: actions/public.php:90 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." -#: actions/register.php:67 -#: actions/register.php:177 +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Sindicación do Fio Público" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Desculpa, só se pode rexistrar a xente con invitación." -#: actions/register.php:156 -#, php-format -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" +#: actions/register.php:149 +#, fuzzy +msgid "You can't register if you don't " +msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:141 +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + +#: actions/register.php:368 +#, fuzzy +msgid "1-64 lowercase letters or numbers, " +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" + +#: actions/register.php:382 actions/register.php:386 +#, fuzzy +msgid "Used only for updates, announcements, " +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" + +#: actions/register.php:398 +#, fuzzy +msgid "URL of your homepage, blog, " +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: actions/register.php:404 +#, fuzzy +msgid "Describe yourself and your " +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/register.php:410 +#, fuzzy +msgid "Where you are, like \"City, " +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" + +#: actions/register.php:432 +#, fuzzy +msgid " except this private data: password, " +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." + +#: actions/register.php:471 +#, fuzzy, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." + +#: actions/register.php:495 +#, fuzzy +msgid "(You should receive a message by email " +msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "Este é un perfil local! Rexístrate para suscribirte." -#: actions/smspostsettings.php:27 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Replies to %s" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s favorite notices, page %d" +msgstr "%s chíos favoritos" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format -msgid "You can post on %1s sending an sms to %2s in the followin format: '%3s'" -msgstr "Podes publicar chíos en %1s enviando un SMS a %2s co seguinte formato: '%3s'" +msgid "%s group" +msgstr "" -#: actions/smspostsettings.php:32 -#: actions/smspostsettings.php:33 -#: actions/smspostsettings.php:57 -msgid "SMS Post Settings" -msgstr "Configuracións de envio por SMS" +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: actions/smspostsettings.php:101 -#: actions/smspostsettings.php:106 -msgid "The address was added." -msgstr "Enderezo engadido." +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Non existe o perfil." -#: actions/subedit.php:68 +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 +#, fuzzy +msgid "Note" +msgstr "Chíos" + +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +#, fuzzy +msgid "Group actions" +msgstr "Outras opcions" + +#: actions/showgroup.php:323 actions/showgroup.php:304 +#, fuzzy, php-format +msgid "Notice feed for %s group" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 +#, fuzzy +msgid "Members" +msgstr "Membro dende" + +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +#, fuzzy +msgid "(None)" +msgstr "(nada)" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +#, fuzzy +msgid "Only the sender and recipient " +msgstr "Só o emisor e destinatario poden ler esta mensaxe." + +#: actions/showstream.php:73 actions/showstream.php:78 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Band. Entrada para %s - páxina %d" + +#: actions/showstream.php:143 +#, fuzzy +msgid "'s profile" +msgstr "Perfil" + +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 +#, fuzzy +msgid "User profile" +msgstr "O usuario non ten perfil." + +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +#, fuzzy +msgid "User actions" +msgstr "Outras opcions" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +#, fuzzy +msgid "Send a direct message to this user" +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +#, fuzzy +msgid "Message" +msgstr "Nova mensaxe" + +#: actions/showstream.php:451 lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Subscritores" + +#: actions/showstream.php:533 lib/profileaction.php:235 +#, fuzzy +msgid "All groups" +msgstr "Tódalas etiquetas" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/smssettings.php:128 +#, fuzzy +msgid "Phone number, no punctuation or spaces, " +msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" + +#: actions/smssettings.php:162 +#, fuzzy +msgid "Send me notices through SMS; " +msgstr "Enviarme advertencias a través de Jabber/GTalk." + +#: actions/smssettings.php:335 +#, fuzzy +msgid "A confirmation code was sent to the phone number you added. " +msgstr "Agardando a confirmación neste número de teléfono." + +#: actions/smssettings.php:453 actions/smssettings.php:465 +#, fuzzy +msgid "Mobile carrier" +msgstr "Selecciona unha operadora" + +#: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" -#: actions/subedit.php:81 +#: actions/subedit.php:83 msgid "Could not save subscription." msgstr "Non se pode gardar a subscrición." -#: actions/subscribe.php:53 +#: actions/subscribe.php:55 msgid "Not a local user." msgstr "Non é usuario local." -#: actions/subscribe.php:67 +#: actions/subscribe.php:69 msgid "Subscribed" msgstr "Suscrito" -#: actions/subscriptions.php:72 +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Subscritores" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +#, fuzzy +msgid "These are the people who listen to " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscribers.php:67 +#, fuzzy, php-format +msgid "These are the people who " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Tódalas subscricións" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Tódalas subscricións" + +#: actions/subscriptions.php:65 +#, fuzzy +msgid "These are the people whose notices " +msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." + +#: actions/subscriptions.php:69 +#, fuzzy, php-format +msgid "These are the people whose " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber." -#: actions/tagother.php:31 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Chíos tagueados con %s" + +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + +#: actions/tagother.php:33 msgid "Not logged in" msgstr "Non estás logueado." -#: actions/tagother.php:40 +#: actions/tagother.php:39 msgid "No id argument." msgstr "Non hai argumento id." -#: actions/tagother.php:56 -msgid "Tag a person" -msgstr "Etiquetar a unha persoa" +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Tags" -#: actions/tagother.php:98 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma ou espazo" +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "Tags" -#: actions/tagother.php:120 -msgid "No such profile." -msgstr "Non existe o perfil." +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " +"ou espazo" -#: actions/tagother.php:146 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a ti." +#: actions/tagother.php:164 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/tagother.php:153 +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " +"ti." + +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Non se poden gardar as etiquetas." -#: actions/tagother.php:188 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Usa este formulario para engadir etiquetas aos teus seguidores ou aos que sigues." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." -#: actions/tag.php:66 -msgid "Showing all tags" -msgstr "Amosando tódalas etiquetas" - -#: actions/tagrss.php:33 +#: actions/tagrss.php:35 msgid "No such tag." msgstr "Non existe a etiqueta." -#: actions/tagrss.php:62 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog etiquetado con %s" -#: actions/twitapiblocks.php:45 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Bloqueo de usuario fallido." -#: actions/twitapiblocks.php:66 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Desbloqueo de usuario fallido." -#: actions/twitapifavorites.php:159 -#: lib/mail.php:294 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non atopado" + +#: actions/twittersettings.php:71 +#, fuzzy +msgid "Add your Twitter account to automatically send " +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "Nome de usuario en Twitter" + +#: actions/twittersettings.php:126 actions/twittersettings.php:129 +msgid "Twitter password" +msgstr "Contrasinal de Twitter" + +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "Amigos de Twitter" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + +#: actions/twittersettings.php:341 +#, fuzzy, php-format +msgid "Unable to retrieve account information " +msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." + +#: actions/unblock.php:108 actions/groupunblock.php:128 +msgid "Error removing the block." +msgstr "Acounteceu un erro borrando o bloqueo." + +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Non hai identificador de perfil na peticion." + +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Non se atopou un perfil con ese ID." + +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "De-suscribido" + +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." + +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Tes restrinxido o envio de chíos neste sitio." + +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +#, fuzzy +msgid "Upload an avatar" +msgstr "Acounteceu un fallo ó actualizar o avatar." + +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Outros" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Outras opcions" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, fuzzy, php-format +msgid "%s - %s" +msgstr "%s (%s)" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "Sobre" + +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy +msgid "Change your email, avatar, password, profile" +msgstr "Cambiar contrasinal" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#, fuzzy +msgid "Create an account" +msgstr "Crear nova conta" + +#: lib/action.php:341 lib/action.php:418 +#, fuzzy +msgid "Login with OpenID" +msgstr "Ningún OpenID." + +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#, fuzzy +msgid "Help me!" +msgstr "Axuda" + +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#, fuzzy +msgid "Site notice" +msgstr "Novo chío" + +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#, fuzzy +msgid "Page notice" +msgstr "Novo chío" + +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Navegación de subscricións" + +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +#, fuzzy +msgid "All " +msgstr "Todos" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +#, fuzzy +msgid "Block this user" +msgstr "Bloquear usuario" + +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "Bloquear" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "%s chíos favoritos" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 +#, fuzzy +msgid " a new account." +msgstr "Crear nova conta" + +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +#, fuzzy +msgid "Published" +msgstr "Público" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "%s chíos favoritos" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtrar etiquetas" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Todos" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Etiqueta" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Elixe unha etiqueta para reducila lista" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Ir" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Subscricións" + +#: lib/groupeditform.php:153 lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic in 140 chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" + +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:106 lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Sair" + +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:104 +#, fuzzy +msgid "This page is not available in a " +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Inicio de sesión" + +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Gardar" + +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Accede co teu nome de usuario e contrasinal." + +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Crear nova conta" + +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + +#: lib/mail.php:236 +#, fuzzy, php-format +msgid "%1$s is now listening to " +msgstr "%1$s está a escoitar os teus chíos %2$s." + +#: lib/mail.php:254 lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Ubicación: %s" + +#: lib/mail.php:256 lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Páxina persoal: %s" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s douche un toque" + +#: lib/mail.php:465 +#, fuzzy, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" +"%1$s (%2$s) enviouche unha mensaxe privada:\n" +"\n" + +#: lib/mail.php:555 +#, fuzzy, php-format +msgid "%1$s just added your notice from %2$s" +msgstr "" +"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" +"\n" + +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +#, fuzzy +msgid "From" +msgstr " dende " + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "Eliminar chío" + +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#, fuzzy +msgid "Send a notice" +msgstr "Dar un toque" + +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 ou máis caracteres" + +#: lib/noticelist.php:426 lib/noticelist.php:429 +#, fuzzy +msgid "in reply to" +msgstr "en contestación a..." + +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +#, fuzzy +msgid "Reply to this notice" +msgstr "Non se pode eliminar este chíos." + +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "contestar" + +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Eliminar chío" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "eliminar" + +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Nudge" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "Non podes enviar mensaxes a este usurio." + +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "O usuario non ten último chio." + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(nada)" + +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Público" + +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#, fuzzy +msgid "User groups" +msgstr "Usuarios" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Etiquetas recentes" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Destacado" + +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Popular" + +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "Chíos" + +#: lib/searchgroupnav.php:85 +#, fuzzy +msgid "Find groups on this site" +msgstr "Atopar xente neste sitio" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Suscrición remota" + +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Suscrito a %s" + +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." + +#: lib/subs.php:53 lib/subs.php:52 +msgid "User has blocked you." +msgstr "O usuario bloqueoute." + +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#, fuzzy +msgid "Subscribe to this user" +msgstr "Suscrito a %s" + +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "No" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 +#, fuzzy +msgid "Unblock this user" +msgstr "Bloquear usuario" + +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "Desbloquear" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Desuscribir de %s" + +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblogue por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Erro ó enviar a mensaxe directa." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Buscar \"%s\" na Liña de tempo" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/register.php:286 actions/register.php:329 +#, fuzzy, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Non existe o perfil." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Non existe o perfil." + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Band. Saída para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración de perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 #, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" @@ -4352,48 +6020,66 @@ msgstr "" "Fielmente teu,\n" "%5$s\n" -#: actions/twitapiusers.php:46 -msgid "Not found." -msgstr "Non atopado" +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Non é o usuario" -#: actions/twittersettings.php:29 -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." -#: actions/twittersettings.php:63 -msgid "Twitter user name" -msgstr "Nome de usuario en Twitter" +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." -#: actions/twittersettings.php:67 -msgid "Twitter password" -msgstr "Contrasinal de Twitter" +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: actions/twittersettings.php:129 -msgid "Twitter Friends" -msgstr "Amigos de Twitter" +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" -#: actions/unblock.php:73 -msgid "Error removing the block." -msgstr "Acounteceu un erro borrando o bloqueo." +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." -#: actions/unsubscribe.php:48 -msgid "No profile id in request." -msgstr "Non hai identificador de perfil na peticion." +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" -#: actions/unsubscribe.php:55 -msgid "No profile with that id." -msgstr "Non se atopou un perfil con ese ID." +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" -#: actions/unsubscribe.php:69 -msgid "Unsubscribed" -msgstr "De-suscribido" - -#: actions/users.php:38 -#: lib/util.php:378 -msgid "Users list" -msgstr "Lista de usuarios" - -#: classes/Command.php:96 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -4404,7 +6090,7 @@ msgstr "" "Suscriptores: %2$s\n" "Chíos: %3$s" -#: classes/Command.php:349 +#: lib/command.php:392 lib/command.php:385 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4460,53 +6146,41 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: classes/Notice.php:100 -msgid "Problem saving notice. Unknown user." -msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: classes/Notice.php:105 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." -#: classes/Notice.php:112 -msgid "You are banned from posting notices on this site." -msgstr "Tes restrinxido o envio de chíos neste sitio." +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: lib/gallery.php:98 -msgid "Filter tags" -msgstr "Filtrar etiquetas" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: lib/gallery.php:104 -msgid "All" -msgstr "Todos" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: lib/gallery.php:108 -msgid "Tag" -msgstr "Etiqueta" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: lib/gallery.php:109 -msgid "Choose a tag to narrow list" -msgstr "Elixe unha etiqueta para reducila lista" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" -#: lib/gallery.php:110 -msgid "Go" -msgstr "Ir" - -#: lib/gallery.php:264 -msgid "Subscriptions navigation" -msgstr "Navegación de subscricións" - -#: lib/gallery.php:270 -#: lib/gallery.php:292 -msgid "List" -msgstr "Lista" - -#: lib/gallery.php:280 -#: lib/gallery.php:294 -msgid "Icons" -msgstr "Iconos" - -#: lib/mail.php:92 +#: lib/mail.php:175 lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" @@ -4535,15 +6209,32 @@ msgstr "" "Grazas polo teu tempo, \n" "%s\n" -#: lib/mail.php:232 -#, php-format -msgid "You've been nudged by %s" -msgstr "%s douche un toque" +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" -#: lib/mail.php:236 +#: lib/mail.php:466 #, php-format msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" "\n" "So let's hear from you :)\n" "\n" @@ -4565,7 +6256,7 @@ msgstr "" "With kind regards,\n" "%4$s\n" -#: lib/mail.php:269 +#: lib/mail.php:513 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4598,116 +6289,1738 @@ msgstr "" "With kind regards,\n" "%5$s\n" -#: lib/profilelist.php:146 -msgid "(none)" -msgstr "(nada)" +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" -#: lib/settingsaction.php:97 -#: lib/settingsaction.php:98 -msgid "SMS Post" -msgstr "Envío por SMS" +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" -#: lib/settingsaction.php:98 -#: lib/settingsaction.php:99 -msgid "Posts by SMS" -msgstr "Chíos dende SMS" +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Buscar" -#: lib/stream.php:33 -msgid "Public" -msgstr "Público" +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: lib/stream.php:36 -#: lib/stream.php:37 -msgid "Recent tags" -msgstr "Etiquetas recentes" +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" -#: lib/stream.php:39 -#: lib/stream.php:40 -msgid "All tags" -msgstr "Tódalas etiquetas" +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: lib/stream.php:43 -msgid "Featured" -msgstr "Destacado" +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/stream.php:47 -msgid "Popular" -msgstr "Popular" +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: lib/subs.php:51 -msgid "User has blocked you." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Ningún documento." + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloqueo de usuario fallido." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación." + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Non se pode eliminar este chíos." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Non se puido crear o favorito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Novo chío" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Novo chío" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Non é un alcume válido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Non se especificou ningún perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." msgstr "O usuario bloqueoute." -#: lib/util.php:379 -msgid "Users" -msgstr "Usuarios" - -#: lib/util.php:2118 -msgid "Send a nudge" -msgstr "Dar un toque" - -#: lib/util.php:2122 -msgid "Nudge sent!" -msgstr "Toque enviado!" - -#: lib/util.php:2253 -msgid "Block" -msgstr "Bloquear" - -#: lib/util.php:2257 -msgid "Unblock" -msgstr "Desbloquear" - -#: actions/newsmsnotice.php:29 -#: actions/smspostsettings.php:57 -msgid "SMS Post Disabled!" -msgstr "Publicación de chíos por SMS desactivado!" - -#: actions/badgemisc.php:31 -#, php-format -msgid "%1s in your blog" -msgstr "%1s no teu blogue" - -#: actions/misc.php:85 -msgid "WordPress Plugin" -msgstr "Plugin WordPress" - -#: actions/misc.php:88 -#, php-format -msgid "Graphics and statistics about the state of %1s" -msgstr "Gráficos e estatísticas sobre o estado de %1s" - -#: actions/newsmsnotice.php:35 -#, php-format -msgid "%1s is not a reliable source." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/newsmsnotice.php:60 -msgid "Unexpected error" -msgstr "Erro inesperado" +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario" -#: actions/newsmsnotice.php:65 -msgid "No such phone" -msgstr "Non existe o telefono" +#: actions/groupblock.php:155 +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." -#: actions/newsmsnotice.php:75 -msgid "Missing message" -msgstr "Falta a mensaxe" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: actions/newsmsnotice.php:91 -msgid "Notice published correctly" -msgstr "Chío publicado correctamente" +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/wpmisc.php:27 -msgid "If you want to have your notices on your Wordpress, then follow the instructions" -msgstr "Se queres ter os teus chios no teu Wordpress, sigue as instruccións" +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" -#: actions/wpmisc.php:31 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Non se puido actualizar o usuario." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias gardadas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Non se atoparon resultados" + +#: actions/groupsearch.php:82 #, php-format -msgid "%1s on your Wordpress" -msgstr "%1s no teu Wordpress" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: actions/badgemisc.php:27 -msgid "If you want to have your notices on your blog/website, then follow the instructions" -msgstr "Se queres ter os teus chios no teu blogue/sitio web, sigue as instruccións" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuario bloqueoute." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Non hai mensaxes de texto!" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Non se puido gardar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración de perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Petición de recuperación de contrasinal" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Acounteceu un erro co código de confirmación." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Suscrito a %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Chíos favoritos de %s" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Non é usuario local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Chíos tagueados con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está a escoitar os teus chíos %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Este chío xa é un favorito!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Este chío non é un favorito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Non se pudo recuperar a liña de tempo publica." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Non se especificou ningún destinatario" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Non se puido atopar ningún estado" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Chíos que respostan a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Subscrición de autorización." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración de perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "%1s non é unha orixe fiable." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Aconteceu un erro ó gardar o chío." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "O usuario non ten perfil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Subir" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambiar contrasinal" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuario" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Sen contido!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "%1s non é unha orixe fiable." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Non existe a etiqueta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensaxes directas para %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Xa bloqueaches a este usuario." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de ficheiro de imaxe non soportado." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Chíos dende SMS" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuario que está sendo escoitado non existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non está autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Non se pode convertir o token da petición a tokens de acceso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión de protocolo OMB descoñecida." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Non existe o perfil." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Non se puido crear o favorito." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "%1s non é unha orixe fiable." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." + +#: actions/register.php:336 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Este é un perfil local! Rexístrate para suscribirte." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Non se puido recoller o token de petición." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Chío publicado" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Publicación de chíos por SMS desactivado!" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Non se pode ler a URL do avatar de '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imaxe incorrecto para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Non se pode redireccionar ao servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Atopar no contido dos chíos" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Toque enviado" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Replies to %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Aconteceu un erro ó gardar o chío." + +#: lib/command.php:587 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Sen código de confirmación." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona unha operadora" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Fonte de chíos para %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s gustoulle o teu chío" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " dende " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Non se puido eliminar o favorito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar chío" + +#~ msgid "Code not yet ready." +#~ msgstr "Código non implementado." + +#~ msgid "Export and delete your user information." +#~ msgstr "Exportar e eliminar a túa información de usuario." + +#~ msgid "Delete my account" +#~ msgstr "Borrar a miña conta" + +#~ msgid "Delete my account confirmation" +#~ msgstr "Confirmación de borrado da miña conta" + +#~ msgid "Check if you are sure you want to delete your account." +#~ msgstr "Estas seguro que queres eliminar a tua conta?" + +#~ msgid "Showing recently popular notices" +#~ msgstr "Amosando chíos populares recentes" + +#~ msgid "Send me notices from public timeline through Jabber/GTalk." +#~ msgstr "" +#~ "Enviarme os chíos da liña de tempo pública a través de Jabber/GTalk." + +#~ msgid "you can also login using OpenID" +#~ msgstr "tamén te podes rexistrar cunha conta OpenID" + +#~ msgid "Embedded" +#~ msgstr "Embebida" + +#~ msgid "Embedded %1s" +#~ msgstr "%1s embebida" + +#~ msgid "WP" +#~ msgstr "WP" + +#~ msgid "Theme" +#~ msgstr "Tema" + +#~ msgid "Preferred theme" +#~ msgstr "Tema preferido" + +#~ msgid "" +#~ "You can post on %1s sending an sms to %2s in the followin format: '%3s'" +#~ msgstr "" +#~ "Podes publicar chíos en %1s enviando un SMS a %2s co seguinte formato: '%" +#~ "3s'" + +#~ msgid "SMS Post Settings" +#~ msgstr "Configuracións de envio por SMS" + +#~ msgid "The address was added." +#~ msgstr "Enderezo engadido." + +#~ msgid "Tag a person" +#~ msgstr "Etiquetar a unha persoa" + +#~ msgid "Showing all tags" +#~ msgstr "Amosando tódalas etiquetas" + +#~ msgid "Users list" +#~ msgstr "Lista de usuarios" + +#~ msgid "Icons" +#~ msgstr "Iconos" + +#~ msgid "SMS Post" +#~ msgstr "Envío por SMS" + +#~ msgid "%1s in your blog" +#~ msgstr "%1s no teu blogue" + +#~ msgid "WordPress Plugin" +#~ msgstr "Plugin WordPress" + +#~ msgid "Graphics and statistics about the state of %1s" +#~ msgstr "Gráficos e estatísticas sobre o estado de %1s" + +#~ msgid "Unexpected error" +#~ msgstr "Erro inesperado" + +#~ msgid "No such phone" +#~ msgstr "Non existe o telefono" + +#~ msgid "Missing message" +#~ msgstr "Falta a mensaxe" + +#~ msgid "Notice published correctly" +#~ msgstr "Chío publicado correctamente" + +#~ msgid "" +#~ "If you want to have your notices on your Wordpress, then follow the " +#~ "instructions" +#~ msgstr "Se queres ter os teus chios no teu Wordpress, sigue as instruccións" + +#~ msgid "%1s on your Wordpress" +#~ msgstr "%1s no teu Wordpress" + +#~ msgid "" +#~ "If you want to have your notices on your blog/website, then follow the " +#~ "instructions" +#~ msgstr "" +#~ "Se queres ter os teus chios no teu blogue/sitio web, sigue as instruccións" diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index 609918d9266dfcdb79fd78e7bb444e62f835b357..c6fd808286eceffb314540a2a7022737a9aa8286 100644 GIT binary patch delta 17040 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 delta 10779 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 LJP~FNU2XV37u_^k diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 97a44a030e..d4902f5f48 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-01-30 12:07+0000\n" "Last-Translator: support team \n" "Language-Team: LANGUAGE \n" @@ -27,14 +27,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "חיפוש ברצף אחרי \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -45,17 +45,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -87,6 +89,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" @@ -108,25 +111,28 @@ msgstr "" " %4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "רצף ציבורי ב-%s" @@ -136,40 +142,55 @@ msgstr "רצף ציבורי ב-%s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s וחברים" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -178,7 +199,8 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." @@ -190,30 +212,34 @@ msgstr "תנו קרדיט מלא לכותבים בשמם המלא או בכינ #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "לפחות 6 אותיות" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "לפחות 6 אותיות, אל תשכח!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr " לפחות 6 אותיות. שדה חובה." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -223,6 +249,7 @@ msgstr "" "מידיים אליך." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -252,7 +279,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -275,16 +329,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "אודות" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "קבל" @@ -295,6 +356,9 @@ msgstr "קבל" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "הוסף" @@ -312,27 +376,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "כתבות" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "כל המנויים" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "כל העדכונים עבור %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" @@ -342,30 +408,37 @@ msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "כבר מחובר." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "כבר מנוי!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "אשר מנוי" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -373,15 +446,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "תמונה" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "התמונה עודכנה." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -391,13 +468,14 @@ msgstr "" "נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -409,6 +487,8 @@ msgstr "לפני >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "ביוגרפיה" @@ -416,16 +496,18 @@ msgstr "ביוגרפיה" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" @@ -433,6 +515,8 @@ msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "לא ניתן לשמור את הסיסמה" @@ -440,31 +524,34 @@ msgstr "לא ניתן לשמור את הסיסמה" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "בטל" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "לא ניתן להפעיל את אובייקט הלקוח של OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "שנה" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -474,11 +561,12 @@ msgid "Change password" msgstr "שנה סיסמה" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -488,6 +576,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "אשר" @@ -500,12 +591,14 @@ msgstr "אשר כתובת" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "האישור בוטל." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -514,7 +607,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "קוד האישור לא נמצא." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -534,20 +628,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "התחבר" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "התחבר לחשבון קיים" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "צור קשר" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "נכשלה יצירת OpenID מתוך: %s" @@ -555,35 +653,39 @@ msgstr "נכשלה יצירת OpenID מתוך: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "נכשלה ההפניה לשרת: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "שמירת מידע התמונה נכשל" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "שמירת מידע הפרופיל החדש נכשלה" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -603,15 +705,17 @@ msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליח #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -624,29 +728,38 @@ msgstr "אסימון הבקשה לא התקבל." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "הכנסת קוד האישור נכשלה." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -662,42 +775,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "עידכון המשתמש נכשל." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "צור" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "צור משתמש חדש עם הכינוי הזה." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "צור חשבון חדש" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "יצירת חשבון חדש עבור OpenID שכבר משוייך למשתמש." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -706,23 +825,27 @@ msgid "Currently" msgstr "כרגע" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" @@ -730,11 +853,13 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -744,39 +869,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "שגיאה באישור האסימון" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "שגיאה בקישור המשתמש ל-OpenID." @@ -787,39 +916,46 @@ msgstr "שגיאת חיבור משתמש." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "שגיאה בהכנסת התמונה." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "שגיאה בהכנסת הפרופיל" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "שגיאה בהכנסת פרופיל מרוחק" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "שגיאה בשמירת אישור הכתובת." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "שגיאה בשמירת פרופיל מרוחק" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "שגיאה בשמירת הפרופיל." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "שגיאה בשמירת המשתמש." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." @@ -828,6 +964,9 @@ msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "שגיאה ביצירת שם המשתמש." @@ -838,6 +977,7 @@ msgstr "שגיאה בעידכון הפרופיל" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "שגיאה בעדכון פרופיל מרוחק" @@ -847,33 +987,36 @@ msgid "Error with confirmation code." msgstr "שגיאה באישור הקוד." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "כינוי זה כבר קיים" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "רשימת שאלות נפוצות" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "עדכון התמונה נכשל." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "הזנות החברים של %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "הזנת התגובות ל-%s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -888,7 +1031,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -899,6 +1042,11 @@ msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסי #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "שם מלא" @@ -907,23 +1055,33 @@ msgstr "שם מלא" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "עזרה" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "בית" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "אתר בית" @@ -931,21 +1089,27 @@ msgstr "אתר בית" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "כתובת מסרים מידיים" @@ -955,21 +1119,21 @@ msgid "IM Settings" msgstr "הגדרות מסרים מידיים" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" "אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -978,55 +1142,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "הסיסמה הישנה לא נכונה" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "שם משתמש או סיסמה לא נכונים." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "כתובת התמונה '%s' אינה חוקית" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "כתובת אתר הבית '%s' אינה חוקית" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "כתובת הרשיון '%s' איה חוקית" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "תוכן ההודעה לא חוקי" @@ -1041,13 +1212,13 @@ msgid "Invalid notice url" msgstr "כתובת לא חוקית" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "כתובת הפרופיל '%s' לא חוקית." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)" @@ -1065,28 +1236,35 @@ msgstr "גודל לא חוקי." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "שם המשתמש או הסיסמה לא חוקיים" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1098,11 +1276,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1112,12 +1291,14 @@ msgstr "" "החברים בתוכנת ההמסרים המידיים או GTalk שלך." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "שפה" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1126,7 +1307,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "מיקום" @@ -1135,7 +1324,12 @@ msgstr "מיקום" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." @@ -1144,18 +1338,22 @@ msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "היכנס" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "התחבר לחשבון [OpenID](%%doc.openid%%). " -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1165,22 +1363,26 @@ msgstr "" "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." "register%%) לחשבון " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "צא" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "שכחת או איבדת את הסיסמה?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1191,16 +1393,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "חבר מאז" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "מיקרובלוג מאת %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1210,42 +1414,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "חדש" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "כינוי חדש" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "הודעה חדשה" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "סיסמה חדשה" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למערכת." @@ -1255,7 +1467,13 @@ msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למ #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "כינוי" @@ -1264,7 +1482,12 @@ msgstr "כינוי" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." @@ -1273,47 +1496,58 @@ msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "כינוי זה אסור." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "לא" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "אין זיהוי Jabber כזה." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "לא התבקש אישור!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1325,11 +1559,15 @@ msgstr "אין קוד אישור." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "אין תוכן!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1338,7 +1576,9 @@ msgid "No id." msgstr "אין זיהוי." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1349,6 +1589,7 @@ msgstr "השרת הרחוק לא מספק כינוי" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "אין כינוי" @@ -1356,12 +1597,14 @@ msgstr "אין כינוי" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1371,7 +1614,8 @@ msgid "No profile URL returned by server." msgstr "השרת לא החזיר כתובת פרופיל" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1383,7 +1627,7 @@ msgstr "לא נמצאה בקשה!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "אין תוצאות" @@ -1394,12 +1638,16 @@ msgstr "אין גודל." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1409,13 +1657,15 @@ msgid "No such OpenID." msgstr "אין OpenID כזה." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "אין מסמך כזה." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "אין הודעה כזו." @@ -1453,12 +1703,22 @@ msgstr "אין מנוי כזה" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "אין משתמש כזה." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1472,32 +1732,38 @@ msgid "Not a recovery code." msgstr "זהו לא קוד אישור." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "לא עומד בכללים לזיהוי Jabber" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "לא עומד בכללים ל-OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1505,6 +1771,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "שם משתמש לא חוקי." @@ -1524,7 +1795,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Not a valid profile URL (no YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש." @@ -1535,11 +1807,13 @@ msgstr "לא מורשה." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "זו תגובה לא צפויה!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "לא נמצא" @@ -1555,11 +1829,15 @@ msgstr "לא נמצא" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "לא מחובר." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "לא מנוי!" @@ -1576,39 +1854,44 @@ msgid "Notice feed for %s" msgstr "הזנת הודעות של %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "להודעה אין פרופיל" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "הודעות" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "סיסמה ישנה" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "הגדרת חשבון OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "הגשה אוטומטית של OpenID" @@ -1616,29 +1899,34 @@ msgstr "הגשה אוטומטית של OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "כניסת OpenId" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "כתובת ה-OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "אישור ה-OpenID בוטל." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "אישור ה-OpenID נכשל: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "כשל OpenID: %s" @@ -1654,11 +1942,12 @@ msgid "OpenID settings" msgstr "הגדרות OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "העלאה חלקית." @@ -1668,34 +1957,46 @@ msgstr "העלאה חלקית." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "סיסמה" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "הסיסמה ואישורה אינן תואמות." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "התבקש שיחזור סיסמה" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "הסיסמה נשמרה." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "הסיסמאות לא תואמות." @@ -1715,14 +2016,17 @@ msgid "People search" msgstr "חיפוש סיסמה" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "אישי" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2040,7 @@ msgstr "" "להירשם, לחץ \"בטל\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." @@ -1745,7 +2049,9 @@ msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מ #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "העדפות" @@ -1754,42 +2060,52 @@ msgstr "העדפות" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "העדפות נשמרו." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "פרטיות" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "פרופיל" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "כתובת הפרופיל" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "הגדרות הפרופיל" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "פרופיל לא מוכר" @@ -1798,17 +2114,19 @@ msgid "Public Stream Feed" msgstr "הזנת זרם הציבורי" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "קו זמן ציבורי" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1818,12 +2136,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "שיחזור" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "סיסמת שיחזור" @@ -1836,37 +2156,45 @@ msgstr "קוד שיחזור למשתמש לא ידוע." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "דחה" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "זכור אותי" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "אין פרופיל תואם לפרופיל המרוחק " #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "הרשמה מרוחקת" @@ -1880,6 +2208,9 @@ msgstr "הרשמה מרוחקת" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "הסר" @@ -1888,7 +2219,7 @@ msgstr "הסר" msgid "Remove OpenID" msgstr "הסר OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1897,34 +2228,41 @@ msgstr "" "אותו, לפני כן הוסף OpenID אחר." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "תגובות" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "תגובת עבור %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "איפוס" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "איפוס סיסמה" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "סמס" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1933,17 +2271,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "זהה לסיסמה למעלה" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1956,12 +2295,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "שמור" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "חיפוש" @@ -1971,7 +2319,7 @@ msgid "Search Stream Feed" msgstr "הזנת זרם החיפושים" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1980,7 +2328,7 @@ msgstr "" "חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " "להיות בני לפחות 3 אותיות." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1990,48 +2338,56 @@ msgstr "" "בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "שלח" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "הגדרות" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2051,27 +2407,32 @@ msgid "Something weird happened." msgstr "קרה משהו מוזר." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "מקור" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "סטטיסטיקה" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID מאוכסן לא נמצא." @@ -2079,24 +2440,28 @@ msgstr "OpenID מאוכסן לא נמצא." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "הירשם כמנוי" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "מנויים" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "ההרשמה אושרה" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "ההרשמה נדחתה" @@ -2104,28 +2469,35 @@ msgstr "ההרשמה נדחתה" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "הרשמות" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "שגיאת מערכת בהעלאת הקובץ." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "טקסט" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "חיפוש טקסט" @@ -2145,6 +2517,7 @@ msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2154,63 +2527,73 @@ msgid "That file is too big." msgstr "קובץ זה גדול מידי." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "זוהי כתובת מסרים מידיים שגויה." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "הכתובת \"%s\" אושרה עבור חשבונך." @@ -2219,11 +2602,14 @@ msgstr "הכתובת \"%s\" אושרה עבור חשבונך." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "הכתובת הוסרה." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2232,7 +2618,8 @@ msgstr "" "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " "כיצד לאשר מנוי. אסימון המנוי שלך הוא:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2242,40 +2629,45 @@ msgstr "" "דחיית מנוי." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "אלה האנשים במאזינים להודעות של %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "אלה האנשים המאזינים להודעות שלך." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "אלה האנשים ש%s מאזין להודעות שלהם." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "טופס אמור לשלוח את עצמו אוטומטית. אם לא, " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2289,6 +2681,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2297,25 +2692,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2327,18 +2734,21 @@ msgstr "" "openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" @@ -2350,15 +2760,22 @@ msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "הגשת טופס לא צפויה." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "איפוס סיסמה לא צפוי." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2387,38 +2804,47 @@ msgstr "בטל מנוי" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "גירסה לא נתמכת של OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "פורמט התמונה אינו נתמך." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "ההעלה" @@ -2438,12 +2864,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות" @@ -2467,11 +2896,16 @@ msgstr "המשתמש אליו אתה מאזין אינו קיים." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "למשתמש אין פרופיל." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "כינוי משתמש" @@ -2480,29 +2914,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "מה המצב %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "סוג התמונה של '%s' אינו מתאים" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "גודל התמונה של: '%s' לא מתאים." @@ -2510,7 +2948,9 @@ msgstr "גודל התמונה של: '%s' לא מתאים." #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "כן" @@ -2531,11 +2971,12 @@ msgid "You are already logged in!" msgstr "כבר נכנסת למערכת!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2553,13 +2994,14 @@ msgstr "ניתן ליצור חשבון חדש ולהתחיל לפרסם הודע msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "הסיר OpenID מחשבונך על ידי לחיצה על הכפתור המסומן \"הסר\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2568,7 +3010,8 @@ msgstr "" "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " "את כתובתך והעדפותיך למטה." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." @@ -2577,21 +3020,23 @@ msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שא #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "ניתן להשתמש במנוי המקומי!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "לא ניתן להירשם ללא הסכמה לרשיון" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2605,35 +3050,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "זוהית. הכנס סיסמה חדשה למטה." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "כתובת ה-OpenID שלך" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2642,47 +3091,57 @@ msgstr "" "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " "מכאן. [OpenID](%%doc.openid%%)" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "לפני כיום" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "לפני כדקה" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "לפני כחודש" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "לפני כשנה" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "לפני כשעה" @@ -2704,12 +3163,14 @@ msgid "reply" msgstr "הגב" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "זהה לסיסמה למעלה" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2731,6 +3192,26 @@ msgstr "<< אחרי" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2739,6 +3220,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2746,22 +3228,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2771,11 +3259,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2815,33 +3305,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "הודעה חדשה" @@ -2895,6 +3396,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2923,6 +3429,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2943,12 +3451,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2956,7 +3467,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2980,51 +3491,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3043,14 +3573,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3059,6 +3592,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3067,24 +3601,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3095,33 +3634,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3138,18 +3687,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3159,89 +3709,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "אודות: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3249,11 +3821,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3268,7 +3840,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3280,7 +3852,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3289,31 +3861,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "מועדפים" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3326,14 +3906,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "אל" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s וחברים" @@ -3343,22 +3928,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "הגדרות" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3375,35 +3970,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "אין הודעה כזו." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." @@ -3412,12 +4016,12 @@ msgstr "אין משתמש כזה." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "כבר נכנסת למערכת!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3435,40 +4039,58 @@ msgstr "" msgid "Add to favorites" msgstr "מועדפים" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "אין כינוי" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "אין הודעה כזו." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3478,16 +4100,17 @@ msgid "Nickname must have only lowercase letters " msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "עידכון המשתמש נכשל." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "ההגדרות נשמרו." @@ -3505,7 +4128,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3521,7 +4145,7 @@ msgstr "" "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " "מידיים אליך." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3535,54 +4159,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "אין תוכן!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "<< אחרי" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "לפני >>" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "הזנות החברים של %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3628,12 +4267,14 @@ msgstr "" msgid "Sync preferences" msgstr "העדפות" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "אין הודעה כזו." @@ -3648,7 +4289,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3662,15 +4304,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3678,12 +4322,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "התמונה עודכנה." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "עדכון התמונה נכשל." @@ -3703,7 +4349,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" @@ -3718,6 +4365,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "צור חשבון חדש" @@ -3730,7 +4378,7 @@ msgstr "" "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " "בין הביטויים; עליהם להיות בני לפחות 3 אותיות." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "חיפוש סיסמה" @@ -3754,21 +4402,21 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent " msgstr "אין קוד אישור." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "כבר נכנסת למערכת!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "נכשלה ההפניה לשרת: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3777,16 +4425,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "אין הודעה כזו." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" @@ -3795,21 +4446,25 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "נכשלה יצירת OpenID מתוך: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3821,16 +4476,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע התמונה נכשל" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "יצירת המנוי נכשלה." @@ -3844,12 +4501,15 @@ msgstr "קובץ זה גדול מידי." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "הודעות" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3866,7 +4526,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "כניסת OpenId" @@ -3894,11 +4554,13 @@ msgstr "" msgid "Service" msgstr "חיפוש" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." @@ -3908,17 +4570,18 @@ msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." msgid "Change your password." msgstr "שנה סיסמה" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "הסיסמה נשמרה." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "לא עומד בכללים ל-OpenID." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3928,12 +4591,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "פרופיל לא מוכר" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3943,21 +4607,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "שמירת הפרופיל נכשלה." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "קו זמן ציבורי" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3978,11 +4647,13 @@ msgstr "הזנת זרם הציבורי" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4037,7 +4708,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "תגובת עבור %s" @@ -4047,53 +4719,74 @@ msgstr "תגובת עבור %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "הודעות" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "חבר מאז" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4108,7 +4801,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4119,33 +4812,40 @@ msgid "'s profile" msgstr "פרופיל" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "למשתמש אין פרופיל." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "הודעה חדשה" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "מנויים" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4171,7 +4871,7 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "קוד האישור הזה אינו מיועד לך!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4235,17 +4935,18 @@ msgstr "אלה האנשים ש%s מאזין להודעות שלהם." msgid "These are the people whose " msgstr "אלה האנשים במאזינים להודעות של %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "אין זיהוי Jabber כזה." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "מיקרובלוג מאת %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4269,7 +4970,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4279,17 +4980,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "שמירת מידע התמונה נכשל" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4298,20 +4999,23 @@ msgstr "" msgid "No such tag." msgstr "אין הודעה כזו." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "מיקרובלוג מאת %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "לא נמצא" @@ -4320,16 +5024,17 @@ msgstr "לא נמצא" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "סיסמה חדשה" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4342,157 +5047,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "שגיאה בשמירת המשתמש." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "השרת לא החזיר כתובת פרופיל" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "אין פרופיל תואם לפרופיל המרוחק " -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "בטל מנוי" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "עדכון התמונה נכשל." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "אודות" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "אין OpenID כזה." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "עזרה" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4505,12 +5219,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "צור חשבון חדש" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "ציבורי" @@ -4532,34 +5249,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "הרשמות" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4569,21 +5291,21 @@ msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "צא" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4616,12 +5338,12 @@ msgstr "היכנס" msgid "Leave" msgstr "שמור" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "שם המשתמש או הסיסמה לא חוקיים" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "צור חשבון חדש" @@ -4642,24 +5364,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4674,43 +5396,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "הודעה חדשה" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "לפחות 6 אותיות" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "בתגובה ל..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "מחק" @@ -4732,27 +5462,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ציבורי" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "אנשים" @@ -4770,32 +5502,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "הרשמה מרוחקת" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "הרשמה מרוחקת" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "למשתמש אין פרופיל." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "ההרשמה אושרה" @@ -4810,11 +5544,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4822,6 +5557,2010 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s וחברים" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "התמונה עודכנה." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "מיקרובלוג מאת %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "חיפוש ברצף אחרי \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "צור" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "אין הודעה כזו." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "פרופיל" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "תמונה" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "הגדרות הפרופיל" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "קוד האישור הזה אינו מיועד לך!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "אין משתמש כזה." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s מאזין כעת להודעות שלך ב %2$s. \n" +"\n" +"\t%3$s\n" +" שלך,\n" +" %4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "חיפוש" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "אין מסמך כזה." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "אין משתמש כזה." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "למשתמש אין פרופיל." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s וחברים" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "אין משתמש כזה." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "מיקום" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "אין הודעה כזו." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "כתובת אתר הבית '%s' אינה חוקית" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "שמירת מידע התמונה נכשל" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "הודעה חדשה" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "הודעה חדשה" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "שם משתמש לא חוקי." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "למשתמש אין פרופיל." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "אין משתמש כזה." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "קבוצות" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "עידכון המשתמש נכשל." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "העדפות נשמרו." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "אין תוצאות" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "למשתמש אין פרופיל." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "הודעה חדשה" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "שמירת הפרופיל נכשלה." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " +"מכאן. [OpenID](%%doc.openid%%)" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "הגדרות הפרופיל" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "זוהית. הכנס סיסמה חדשה למטה." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "התבקש שיחזור סיסמה" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "שגיאה באישור הקוד." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "ההרשמה אושרה" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "אין הודעה כזו." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "אין משתמש כזה." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "עידכון המשתמש נכשל." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "עידכון המשתמש נכשל." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "הסטטוס של %1$s ב-%2$s " + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "כל המנויים" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "הגדרות הפרופיל" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "בעיה בשמירת ההודעה." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "למשתמש אין פרופיל." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "פרופיל" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ההעלה" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "שנה סיסמה" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "התחבר" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "חיפוש" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "היכנס" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "אין משתמש כזה." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "אין משתמש כזה." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "אין תוכן!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "מתשמש" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "חיפוש" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "לאתר הבית יש כתובת לא חוקית." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "אין הודעה כזו." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "כבר נכנסת למערכת!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "נכשלה יצירת OpenID מתוך: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "פורמט התמונה אינו נתמך." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "המשתמש אליו אתה מאזין אינו קיים." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "לא מורשה." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "גירסה לא מוכרת של פרוטוקול OMB" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "אין הודעה כזו." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "אין הודעה כזו." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." +"register%%) לחשבון " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "אסימון הבקשה לא התקבל." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "תגובת עבור %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "הזנת הודעות של %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "הודעות" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " +"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " +"דחיית מנוי." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "סוג התמונה של '%s' אינו מתאים" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "נכשלה ההפניה לשרת: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "הודעה חדשה" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "נכשלה ההפניה לשרת: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "תגובת עבור %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "בעיה בשמירת ההודעה." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "אין קוד אישור." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "הזנת הודעות של %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "הודעה חדשה" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "צור חשבון חדש" diff --git a/locale/it/LC_MESSAGES/statusnet.mo b/locale/it/LC_MESSAGES/statusnet.mo index 00ab59804adeb3d2d0055913d5e59a53692a90f2..6aafacbbc6543d2f9d3c5fa995087a2cad4e2013 100644 GIT binary patch delta 29161 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 diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 1a59adf85b..bc40b8c97b 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: statusnet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-04 14:09+0000\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -18,14 +18,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Ricerca \"%s\" nel flusso" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -39,19 +39,21 @@ msgid " from " msgstr " via " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Aggiornamenti in risposta a %2$s" # %USERNAME has invited you to join THEM on %site. You start with a singular and end with a plural??? #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" # resa il più 'asessuale' possibile... -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -109,6 +111,7 @@ msgstr "" "Cordiali saluti, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." @@ -131,26 +134,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s aggiornamenti in risposta agli aggiornamenti da %2$s / %3$s" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Stato di %1$s su %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Attività pubblica di %s" @@ -160,36 +166,50 @@ msgstr "Attività pubblica di %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amici" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "attività pubblica di %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "stato di %s" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Attività di %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Aggiornamenti di %s da tutti!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -197,16 +217,18 @@ msgstr "" "(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " "confermare il tuo indirizzo email.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** è un servizio di micro-blog offerto da " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" +"(%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di micro-blog. " @@ -219,34 +241,38 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o più caratteri" # messa al femminile... dovrebbe essere la password #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o più caratteri, e non dimenticarla!" # Femminile, è la password #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o più caratteri. Richiesta." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -256,6 +282,7 @@ msgstr "" "istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -291,7 +318,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Metodo delle API non trovato!" @@ -314,16 +368,23 @@ msgstr "Metodo delle API non trovato!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Metodo delle API in lavorazione." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Informazioni" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accetta" @@ -334,6 +395,9 @@ msgstr "Accetta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Aggiungi" @@ -352,27 +416,29 @@ msgstr "Aggiungi o rimuovi OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Indirizzo" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Indirizzi email di amici da invitare (uno per riga)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tutti gli abbonamenti" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tutti gli aggiornamenti di %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" @@ -382,30 +448,37 @@ msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Accesso già effettuato." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Già abbonato!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sei sicuro di voler eliminare questo messaggio?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizza abbonamento" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Accedi automaticamente in futuro; non per computer condivisi!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -415,15 +488,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Immagine" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Immagine aggiornata." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -434,6 +511,7 @@ msgstr "" "elenco contatti?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -442,7 +520,7 @@ msgstr "" "(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Attesa la conferma per questo numero di telefono." @@ -453,6 +531,8 @@ msgstr "Precedenti »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografia" @@ -460,16 +540,18 @@ msgstr "Biografia" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografia è troppo lunga (max 140 caratteri)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossibile eliminare questo messaggio." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" @@ -477,6 +559,8 @@ msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Impossibile salvare la nuova password." @@ -484,31 +568,34 @@ msgstr "Impossibile salvare la nuova password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annulla" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossibile creare l'oggetto OpenID consumer." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossibile normalizzare quell'ID Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare l'indirizzo email" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modifica" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Modifica la gestione dell'email" @@ -518,11 +605,12 @@ msgid "Change password" msgstr "Modifica password" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modifica la tua password" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" @@ -532,6 +620,9 @@ msgstr "Modifica le impostazioni del tuo profilo" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Conferma" @@ -544,12 +635,14 @@ msgstr "Conferma indirizzo" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Conferma annullata." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Codice di conferma" @@ -558,7 +651,8 @@ msgstr "Codice di conferma" msgid "Confirmation code not found." msgstr "Codice di conferma non trovato." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -592,20 +686,24 @@ msgstr "" "servizio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connetti" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Collega a un account esistente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contatti" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Impossibile creare il modulo OpenID: %s" @@ -613,35 +711,39 @@ msgstr "Impossibile creare il modulo OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossibile seguire l'utente: %s è già nel tuo elenco." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Impossibile seguire l'utente: utente non trovato." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Impossibile redirigere al server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Impossibile salvare le informazioni dell'immagine" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Impossibile salvare le nuove informazioni del profilo" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Impossibile abbonare altri a te." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Impossibile abbonarsi." @@ -662,15 +764,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Impossibile trovare un qualsiasi stato." @@ -683,29 +787,38 @@ msgstr "Impossibile ottenere un token di richiesta." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossibile inserire il codice di conferma." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Impossibile salvare il profilo." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Impossibile aggiornare il record dell'utente." @@ -721,42 +834,48 @@ msgstr "Impossibile aggiornare il record dell'utente." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Impossibile aggiornare l'utente." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crea" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crea un nuovo utente con questo soprannome." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crea un nuovo account" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creazione nuovo account per OpenID che ha già un utente." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Indirizzo Jabber/GTalk attualmente confermato." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Numero di telefono attualmente confermato per gli SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Indirizzo email attualmente confermato." @@ -766,24 +885,28 @@ msgid "Currently" msgstr "In questo momento:" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Errore del DB nell'inserire la risposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Elimina messaggio" # per renderla 'asessuale' il più possibile... #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" @@ -791,11 +914,13 @@ msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Indirizzo email" @@ -805,39 +930,43 @@ msgid "Email Settings" msgstr "Impostazioni email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Indirizzo email già esistente." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Conferma indirizzo email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Indirizzo email, del tipo \"NomeUtente@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Indirizzi email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Inserisci un soprannome o un indirizzo email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Inserisci il codice che hai ricevuto sul tuo telefono." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Errore nell'autorizzare il token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Errore nel collegare l'utente a OpenID." @@ -848,39 +977,46 @@ msgstr "Errore nel connettere l'utente." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Errore nell'inserire l'immagine" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Errore nell'inserire il nuovo profilo" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Errore nell'inserire un profilo remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Errore nel salvare la conferma dell'indirizzo." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Errore nel salvare il profilo remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Errore nel salvare il profilo." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Errore nel salvare l'utente." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Errore nel salvare l'utente; non valido." @@ -889,6 +1025,9 @@ msgstr "Errore nel salvare l'utente; non valido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Errore nell'impostare l'utente." @@ -899,6 +1038,7 @@ msgstr "Errore nell'aggiornare il profilo" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Errore nell'aggiornare il profilo remoto" @@ -908,33 +1048,36 @@ msgid "Error with confirmation code." msgstr "Errore con il codice di conferma." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Soprannome esistente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Errore nell'aggiornare l'immagine." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed per gli amici di %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed per le risposte a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed per l'etichetta %s" @@ -949,7 +1092,7 @@ msgstr "Ricerca contenuto dei messaggi" msgid "Find people on this site" msgstr "Ricerca persone in questo sito" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -962,6 +1105,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome" @@ -970,23 +1118,33 @@ msgstr "Nome" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nome troppo lungo (max 255 caratteri)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Aiuto" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Pagina web" @@ -994,22 +1152,28 @@ msgstr "Pagina web" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "L'URL della pagina web non è valido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Voglio inviare i messaggi via email" # Non è il massimo (Messaggistica Istantanea), ma non lo è nemmeno in inglese, questo tipo di abbreviazioni sarebbe da evitare sempre... #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "MI" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Indirizzo di messaggistica istantanea" @@ -1019,7 +1183,7 @@ msgid "IM Settings" msgstr "Impostazioni messaggistica istantanea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1027,7 +1191,7 @@ msgstr "" "Se hai già un account, esegui l'accesso col tuo nome utente e la tua " "password per connetterlo al tuo OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1035,7 +1199,7 @@ msgstr "" "Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro " "sottostante e fai clic su \"Aggiungi\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1046,25 +1210,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Email di ricezione" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Indirizzo email di ricezione rimosso." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Vecchia password non corretta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome utente o password non corretto." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1073,30 +1243,31 @@ msgstr "" "all'indirizzo email registrato nel tuo account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL \"%s\" dell'immagine non valido" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Indirizzo email non valido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Pagina web \"%s\" non valida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL \"%s\" della licenza non valido" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contenuto del messaggio non valido" @@ -1111,13 +1282,13 @@ msgid "Invalid notice url" msgstr "URL del messaggio non valido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL \"%s\" del profilo non valido" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL del profilo non valido (formato errato)" @@ -1135,28 +1306,35 @@ msgstr "Dimensione non valida." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome utente o password non valido." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Inviti inviati" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Inviti inviati alle seguenti persone:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invita" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invita nuovi utenti" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1164,15 +1342,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " -"%s, disponibile sotto licenza [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "ID Jabber già assegnato a un altro utente." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1183,12 +1362,14 @@ msgstr "" "di messaggistica o su GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Lingua" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "La lingua è troppo lunga (max 50 caratteri)." @@ -1197,7 +1378,15 @@ msgstr "La lingua è troppo lunga (max 50 caratteri)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicazione" @@ -1206,7 +1395,12 @@ msgstr "Ubicazione" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." @@ -1215,18 +1409,22 @@ msgstr "Ubicazione troppo lunga (max 255 caratteri)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Accedi" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Accedi con un account [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1237,22 +1435,26 @@ msgstr "" "(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" "%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Esci" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Password persa o dimenticata?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " @@ -1265,16 +1467,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestisci la ricezione delle email da %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro dal" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Micro-blog di %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1286,42 +1490,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "I miei testi e file sono disponibili sotto " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nuovo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nuovo indirizzo email per inviare messaggi a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nuovo soprannome" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nuovo messaggio" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nuova password" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." @@ -1331,7 +1543,13 @@ msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Soprannome" @@ -1340,7 +1558,12 @@ msgstr "Soprannome" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." @@ -1349,49 +1572,60 @@ msgstr "Soprannome già in uso. Prova con un altro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " "spazi." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Soprannome non consentito." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Soprannome dell'utente che vuoi seguire" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Soprannome o email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nessun ID di Jabber." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Nessuna richiesta di autorizzazione!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Nessun operatore selezionato." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nessun codice inserito" @@ -1403,11 +1637,15 @@ msgstr "Nessun codice di conferma." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Nessun contenuto!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Nessun indirizzo email." @@ -1416,7 +1654,9 @@ msgid "No id." msgstr "Nessun ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Nessun indirizzo email di ricezione." @@ -1427,6 +1667,7 @@ msgstr "Nessun soprannome fornito dal server remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nessun soprannome." @@ -1434,12 +1675,14 @@ msgstr "Nessun soprannome." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nessuna conferma da annullare." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nessun numero di telefono." @@ -1449,7 +1692,8 @@ msgid "No profile URL returned by server." msgstr "Nessun URL di profilo restituito dal server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nessun indirizzo email registrato per quell'utente." @@ -1461,7 +1705,7 @@ msgstr "Nessuna richiesta trovata!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nessun risultato" @@ -1472,12 +1716,16 @@ msgstr "Nessuna dimensione." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nessuno stato trovato con quel ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nessuno stato con quel ID trovato." @@ -1487,13 +1735,15 @@ msgid "No such OpenID." msgstr "Nessun tale OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Nessun tale documento." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Nessun tale messaggio." @@ -1531,12 +1781,22 @@ msgstr "Nessun tale abbonamento" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Nessun tale utente." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Nessun utente con quell'email o nome utente." @@ -1550,32 +1810,38 @@ msgid "Not a recovery code." msgstr "Non è un codice di ripristino." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Non è un utente registrato." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Non è un ID Jabber valido" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Non è un OpenID valido." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Non è un indirizzo email valido" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -1583,6 +1849,11 @@ msgstr "Non è un indirizzo email valido." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." @@ -1602,7 +1873,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Non è un URL di profilo valido (nessun documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Non è un'immagine o il file è danneggiato." @@ -1613,11 +1885,13 @@ msgstr "Non autorizzato." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Non aspettavo questa risposta!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non trovato" @@ -1633,11 +1907,15 @@ msgstr "Non trovato" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non connesso." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Non abbonato!" @@ -1654,39 +1932,44 @@ msgid "Notice feed for %s" msgstr "Feed dei messaggi per %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Il messaggio non ha un profilo" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Messaggi" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Vecchia password" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configurazione account OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-invio OpenID" @@ -1694,29 +1977,34 @@ msgstr "Auto-invio OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Accesso OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticazione OpenID annullata." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticazione OpenID non riuscita: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Errore OpenID: %s" @@ -1732,11 +2020,12 @@ msgid "OpenID settings" msgstr "Impostazioni OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Puoi aggiungere un messaggio personale agli inviti." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Caricamento parziale." @@ -1746,34 +2035,46 @@ msgstr "Caricamento parziale." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Password" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La password e la conferma non corrispondono." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La password dev'essere lunga almeno 6 caratteri." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Richiesta password di ripristino" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Password salvata." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Le password non corrispondono." @@ -1793,14 +2094,17 @@ msgid "People search" msgstr "Ricerca persone" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personale" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Messaggio personale" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" @@ -1814,7 +2118,7 @@ msgstr "" "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" @@ -1823,7 +2127,9 @@ msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferenze" @@ -1832,42 +2138,52 @@ msgstr "Preferenze" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferenze salvate." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Lingua preferita" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profilo" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del profilo" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Impostazioni del profilo" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profilo sconosciuto" @@ -1877,17 +2193,19 @@ msgstr "Feed del flusso pubblico" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Attività pubblica" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Pubblica un MicroID per il mio indirizzo email" @@ -1898,12 +2216,14 @@ msgstr "Etichette recenti" # pulsante, indica un'azione quindi come gli altri: accedi, abbonati... #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recupera" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recupero password" @@ -1916,37 +2236,45 @@ msgstr "Codice di recupero per utente sconosciuto." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registra" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrazione non consentita." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registrazione riuscita" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rifiuta" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Ricordami" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profilo remoto senza profilo corrispondente" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abbonamento remoto" @@ -1960,6 +2288,9 @@ msgstr "Abbonamento remoto" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Rimuovi" @@ -1968,7 +2299,7 @@ msgstr "Rimuovi" msgid "Remove OpenID" msgstr "Rimuovi OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1977,34 +2308,41 @@ msgstr "" "vuoi rimuoverlo, prima aggiungi un altro OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Risposte" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Risposte a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reimposta" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Reimposta password" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numero di telefono per SMS" @@ -2013,18 +2351,19 @@ msgstr "Numero di telefono per SMS" msgid "SMS Settings" msgstr "Impostazioni SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Conferma SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stessa password di sopra" # Femminile, è la password #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Stessa password di sopra. Richiesta." @@ -2037,12 +2376,21 @@ msgstr "Stessa password di sopra. Richiesta." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Salva" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Ricerca" @@ -2052,7 +2400,7 @@ msgid "Search Stream Feed" msgstr "Ricerca nel flusso dei feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2061,7 +2409,7 @@ msgstr "" "Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " "termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2071,33 +2419,38 @@ msgstr "" "i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Seleziona un operatore" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Invia" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Inviami avvisi di nuovi abbonamenti via email" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Inviami le notifiche via Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2106,15 +2459,18 @@ msgstr "" "bollette da parte del mio operatore" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Impostazioni" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -2134,27 +2490,32 @@ msgid "Something weird happened." msgstr "È successo qualcosa di strano." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Email di ricezione non consentita." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Quella non è la tua email di ricezione." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Sorgenti" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiche" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID memorizzato non trovato." @@ -2162,24 +2523,28 @@ msgstr "OpenID memorizzato non trovato." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abbonati" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abbonati" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abbonamento autorizzato" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abbonamento rifiutato" @@ -2187,28 +2552,35 @@ msgstr "Abbonamento rifiutato" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abbonamenti" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Etichette" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Testo" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Ricerca testo" @@ -2228,6 +2600,7 @@ msgid "That confirmation code is not for you!" msgstr "Quel codice di conferma non è per te!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Quell'indirizzo email appartiene già a un altro utente." @@ -2237,66 +2610,76 @@ msgid "That file is too big." msgstr "Quel file è troppo grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Quello è già il tuo ID di Jabber." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Quello è già il tuo indirizzo email." # previous suggestion missed the dot #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Quello è già il tuo numero di telefono." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." # previous suggestion missed the dot #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Quello non è il tuo indirizzo email." # previous suggestion missed the dot #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Quello non è il tuo numero di telefono." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Quello è l'indirizzo di messaggistica sbagliato." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Quello è il numero di conferma errato." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Quel numero di telefono appartiene già a un altro utente." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Troppo lungo. Lunghezza massima 140 caratteri." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Troppo lungo. Lunghezza massima 255 caratteri." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." @@ -2305,11 +2688,14 @@ msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'indirizzo è stato rimosso." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2319,7 +2705,8 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come " "autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2330,34 +2717,39 @@ msgstr "" "rifiutare completamente l'abbonamento." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Queste sono le persone che seguono %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Queste sono le persone che ti seguono." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Queste sono le persone seguite da %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Queste sono le persone che stai seguendo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2366,7 +2758,7 @@ msgstr "" "sul pulsante per inviarlo al tuo servizio OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2381,6 +2773,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Questo metodo richiede POST o DELETE." @@ -2389,25 +2784,37 @@ msgstr "Questo metodo richiede POST o DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Questo metodo richiede POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso orario" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2420,18 +2827,21 @@ msgstr "" "tuo profilo qui di seguito." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Devono essere forniti due ID utente o nominativi." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL della tua pagina web, blog o profilo su un altro sito" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" @@ -2443,15 +2853,22 @@ msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Ripristino della password inaspettato." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Azione sconosciuta" @@ -2483,38 +2900,47 @@ msgstr "Disabbonati" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versione OMB non supportata" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato file immagine non supportato." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Aggiornamenti via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Aggiornamenti via messaggistica istantanea (MI)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aggiornamenti da %1$s e amici su %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Carica" @@ -2535,6 +2961,7 @@ msgid "Upload a new profile image" msgstr "Carica una nuova immagine per il profilo" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2543,7 +2970,9 @@ msgstr "" # Femminile, è l'email #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Usata solo per aggiornamenti, annunci e recupero password" @@ -2567,11 +2996,16 @@ msgstr "L'utente che intendi seguire non esiste." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "L'utente non ha un profilo." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Soprannome dell'utente" @@ -2580,29 +3014,33 @@ msgid "User not found." msgstr "Utente non trovato." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In che fuso orario risiedi solitamente?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Cosa succede %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dove ti trovi, tipo \"città, regione, stato\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo di immagine errata per \"%s\"" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Dimensione dell'immagine sbagliata a \"%s\"" @@ -2611,7 +3049,9 @@ msgstr "Dimensione dell'immagine sbagliata a \"%s\"" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sì" @@ -2634,11 +3074,12 @@ msgid "You are already logged in!" msgstr "Hai già effettuato l'accesso!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Sei già abbonato a questi utenti:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Non sei amico dell'utente specificato." @@ -2656,13 +3097,14 @@ msgstr "Puoi creare un nuovo account per iniziare a inviare messaggi." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Puoi rimuovere un OpenID dal tuo account facendo clic su \"Rimuovi\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2672,7 +3114,8 @@ msgstr "" "istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " "impostazioni qui di seguito." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2683,21 +3126,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Puoi usare l'abbonamento locale!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Non puoi registrarti se non accetti la licenza." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Non hai inviato quel profilo" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2719,16 +3164,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Non puoi eliminare lo stato di un altro utente." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2737,21 +3185,22 @@ msgstr "" "registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" # per la par condicio ho sostituito 'sei stato identificato' -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Il tuo URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Il tuo soprannome su questo server o il tuo indirizzo email registrato." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2760,47 +3209,57 @@ msgstr "" "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " "account. Gestisci i tuoi OpenID associati da qui." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "circa un giorno fa" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "circa un minuto fa" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "circa un mese fa" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "circa un anno fa" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "circa un'ora fa" @@ -2822,13 +3281,15 @@ msgid "reply" msgstr "rispondi" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "stessa password di sopra" # wrong capitalization in previous suggestion #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo di file non supportato" @@ -2849,6 +3310,26 @@ msgstr "« Successivi" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." @@ -2857,6 +3338,7 @@ msgid "This notice is not a favorite!" msgstr "Questo messaggio non è un preferito!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Impossibile eliminare un preferito." @@ -2864,23 +3346,29 @@ msgstr "Impossibile eliminare un preferito." msgid "Favor" msgstr "Preferito" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Questo messaggio è già un preferito!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Impossibile creare preferito." @@ -2890,11 +3378,13 @@ msgstr "Non preferito" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Messaggi preferiti di %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed dei messaggi preferiti di %s" @@ -2938,33 +3428,44 @@ msgid "Login with your username and password. " msgstr "Accedi con il tuo nome utente e password. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nessun destinatario specificato." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Nessun tale utente" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nuovo messaggio" @@ -3020,6 +3521,11 @@ msgstr "Qui puoi aggiornare il tuo profilo personale " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Utente senza profilo corrispondente" @@ -3048,6 +3554,8 @@ msgid "New password successfully saved. " msgstr "Nuova password salvata con successo. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "La password deve essere di 6 o più caratteri." @@ -3069,12 +3577,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Per abbonarti, puoi [eseguire l'accesso](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed dei preferiti di %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossibile recuperare i messaggi preferiti." @@ -3082,7 +3593,7 @@ msgstr "Impossibile recuperare i messaggi preferiti." msgid "No such message." msgstr "Nessun tale messaggio." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Solo mittente e destinatario possono leggere questo messaggio." @@ -3106,51 +3617,70 @@ msgid "Mobile carrier for your phone. " msgstr "Operatore mobile del tuo telefono. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Messaggi diretti a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tutti i messaggi diretti inviati a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Messaggi diretti inviati" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tutti i messaggi diretti inviati da %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Nessun testo nel messaggio!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Utente destinatario non trovato." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Non puoi inviare messaggi diretti a utenti che non sono amici tuoi." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Preferiti da %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s aggiornamenti preferiti da %s / %s" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" @@ -3173,14 +3703,17 @@ msgstr "" "su Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Impostazioni Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Account Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Account Twitter attualmente verificato." @@ -3189,6 +3722,7 @@ msgid "Twitter Username" msgstr "Nome utente di Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Niente spazi, grazie." @@ -3197,18 +3731,22 @@ msgid "Twitter Password" msgstr "Password di Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Invia automaticamente i miei messaggi a Twitter" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Invia le risposte \"@\" locali a Twitter" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Abbonami ai miei amici di Twitter" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3217,6 +3755,7 @@ msgstr "" "trattini bassi (_) (max 15 caratteri)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Impossibile verificare le tue credenziali di Twitter!" @@ -3227,33 +3766,43 @@ msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Impossibile salvare le tue impostazioni di Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Impostazioni di Twitter salvate." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Quello non è il tuo account Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Impossibile rimuovere l'utente Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Account Twitter rimosso." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Impossibile salvare le preferenze di Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferenze di Twitter salvate." @@ -3270,18 +3819,19 @@ msgid "The subscription has been rejected, but no " msgstr "L'abbonamento è stato rifiutato, ma non " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Risultati comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completato" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando non riuscito" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Questo comando non è ancora implementato" @@ -3291,89 +3841,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Abbonamenti: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "L'utente non ha un ultimo messaggio" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Ubicazione: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Informazioni: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Messaggio diretto a %s inviato" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Errore nell'inviare il messaggio diretto." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Specifica il nome dell'utente a cui abbonarti" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Abbonato a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Abbonamento a %s annullato" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notifiche disattivate." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notifiche attivate." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." @@ -3381,11 +3953,11 @@ msgstr "Impossibile attivare le notifiche." msgid "Commands:\n" msgstr "Comandi:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Impossibile inserire messaggio." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." @@ -3402,7 +3974,7 @@ msgstr "" "Hai un nuovo indirizzo di ricezione su %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nuovo messaggio privato da %s" @@ -3416,7 +3988,7 @@ msgstr "" "%1$s (%2$s) ti ha inviato un messaggio privato:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Solo l'utente può leggere la propria casella di posta." @@ -3425,31 +3997,39 @@ msgid "This form should automatically submit itself. " msgstr "Questo modulo dovrebbe inviarsi automaticamente. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Preferiti" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Messaggi preferiti di %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "In arrivo" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "I tuoi messaggi in arrivo" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Inviati" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "I tuoi messaggi inviati" @@ -3462,14 +4042,19 @@ msgid "Twitter integration options" msgstr "Opzioni di integrazione Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Impossibile analizzare il messaggio." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s e amici, pagina %d" @@ -3479,21 +4064,31 @@ msgid "You can upload your personal avatar." msgstr "Qui puoi caricare la tua immagine personale." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Impostazioni immagine" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Originale" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Ritaglia" @@ -3510,35 +4105,44 @@ msgid "There was a problem with your session token. " msgstr "C'è stato un problema con il tuo token di sessione. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Scegli un'area quadrata per la tua immagine personale" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Perso il nostro file di dati." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Perso il nostro file." # wrong capitalization in previous suggestion #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipo di file sconosciuto" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Nessun profilo specificato." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Nessun profilo con quel ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Blocca utente" @@ -3546,11 +4150,11 @@ msgstr "Blocca utente" msgid "Are you sure you want to block this user? " msgstr "Vuoi veramente bloccare questo utente? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Hai già bloccato questo utente." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." @@ -3567,38 +4171,56 @@ msgstr "Stai per eliminare definitivamente un messaggio. " msgid "Add to favorites" msgstr "Aggiungi ai preferiti" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Modifica il gruppo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "La casella della posta in arrivo deve essere abilitata per funzionare" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Devi eseguire l'accesso per creare un gruppo." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Nessun soprannome" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Nessun tale gruppo" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Devi essere amministratore per modificare il gruppo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Usa questo modulo per modificare il gruppo." @@ -3607,14 +4229,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Il soprannome deve essere composto solo da lettere minuscole " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Opzioni salvate." @@ -3632,7 +4255,8 @@ msgid "Send me email when someone " msgstr "Inviami un'email quando qualcuno " # per non usare una traduzione troppo fedele e forse un po' banale (gomitata, spintarella), facciamo come abbiamo fatto con Pidgin in Ubuntu, trasformando 'nudge' in un richiamo, anche perché è quello che realmente fa. -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" @@ -3646,13 +4270,12 @@ msgid "A confirmation code was sent to the email address you added. " msgstr "" "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Errore del server: impossibile recuperare l'utente." #: actions/facebookhome.php:196 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " @@ -3661,51 +4284,66 @@ msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " msgid "Allow %s to update my Facebook status" msgstr "Consenti a %s di aggiornare il mio stato su Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Salta" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Nessun contenuto!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginazione" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Successivi" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Precedenti" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Grazie per aver invitato i tuoi amici a usare %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Gli inviti sono stati inviati ai seguenti utenti:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Hai un invito per %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invita i tuoi amici a usare %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amici che già usano %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Invia" @@ -3740,8 +4378,7 @@ msgid "A string to prefix notices with." msgstr "Una stringa con cui iniziare i messaggi." #: actions/facebooksettings.php:124 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like %s to automatically update " msgstr "Se vuoi che %s aggiorni automaticamente " @@ -3750,13 +4387,15 @@ msgid "Sync preferences" msgstr "Preferenze di sincronizzazione" # da chiarire dove e come appaia -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Rimuovi preferito" # prova per 'famosi', al massimo si cambia #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Messaggi famosi" @@ -3771,7 +4410,8 @@ msgid "The most popular notices on the site right now." msgstr "Ecco i messaggi più famosi all'interno del sito." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Utenti in evidenza" @@ -3785,15 +4425,17 @@ msgstr "Utenti in evidenza, pagina %d" msgid "A selection of some of the great users on %s" msgstr "Una selezione dei migliori utenti su %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Quell'utente ti ha bloccato dall'abbonarti." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Nessun ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo del gruppo" @@ -3801,11 +4443,13 @@ msgstr "Logo del gruppo" msgid "You can upload a logo image for your group." msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo aggiornato." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Errore nell'aggiornare il logo." @@ -3824,7 +4468,8 @@ msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppi" @@ -3834,12 +4479,12 @@ msgid "Groups, page %d" msgstr "Gruppi, pagina %d" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "I gruppi di %%%%site.name%%%% ti consentono di cercare e parlare con " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crea un nuovo gruppo" @@ -3849,7 +4494,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Ricerca gruppi su %%site.name%% per nome, ubicazione o descrizione. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Ricerca gruppi" @@ -3859,8 +4504,7 @@ msgid "You can send and receive notices through " msgstr "Puoi inviare e ricevere messaggi attraverso " #: actions/imsettings.php:120 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Jabber or GTalk address, " msgstr "Indirizzo Jabber o GTalk, " @@ -3873,20 +4517,20 @@ msgstr "Inviami le risposte via Jabber/GTalk " msgid "A confirmation code was sent " msgstr "Un codice di conferma è stato inviato " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Sei già un membro di quel gruppo" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Impossibile iscrivere l'utente %s al gruppo %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s si è iscritto al gruppo %s" @@ -3897,15 +4541,18 @@ msgstr "" "Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter " "funzionare." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Nessuna tale gruppo." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Non sei un membro di quel gruppo." @@ -3913,21 +4560,25 @@ msgstr "Non sei un membro di quel gruppo." msgid "You may not leave a group while you are its administrator." msgstr "Non puoi lasciare un gruppo fintantoché ne sei amministratore." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Impossibile trovare il record della membership." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s ha lasciato il gruppo %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Accedi al sito" @@ -3939,15 +4590,17 @@ msgstr "Nessuno stato corrente" msgid "New group" msgstr "Nuovo gruppo" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa questo modulo per creare un nuovo gruppo." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." @@ -3959,11 +4612,14 @@ msgstr "È troppo lungo. " msgid "Don't send a message to yourself; " msgstr "Non inviare un messaggio a te stesso; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Messaggio inviato" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Errore di Ajax" @@ -3982,7 +4638,7 @@ msgstr "Richiamo inviato" msgid "Nudge sent!" msgstr "Richiamo inviato!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Accesso OpenID" @@ -4009,12 +4665,14 @@ msgid "Service" msgstr "Servizio" # o andare con 'accorciamento'? auto-accorciamento? -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servizio di autoriduzione da usare." # in caso, accorciamento anche qui. -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" @@ -4022,16 +4680,17 @@ msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" msgid "Change your password." msgstr "Modifica la tua password." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Cambio password" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Non è un'etichetta valida di persona: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Utenti auto-etichettati con %s - pagina %d" @@ -4041,11 +4700,12 @@ msgstr "Utenti auto-etichettati con %s - pagina %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Questi sono gli utenti che si sono etichettati con \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informazioni sul profilo" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4057,21 +4717,26 @@ msgid "Automatically subscribe to whoever " msgstr "Abbonami automaticamente a chi " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etichetta non valida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Attività pubblica, pagina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Impossibile recuperare l'attività pubblica." @@ -4081,24 +4746,25 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Questo è %%site.name%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Insieme delle etichette" #: actions/publictagcloud.php:63 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "These are most popular recent tags on %s " msgstr "Queste sono le etichette più usate e recenti su %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Insieme etichette" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Spiacenti, solo le persone invitate possono registrarsi." @@ -4158,7 +4824,8 @@ msgstr "(Dovresti ricevere un messaggio email " msgid "That's a local profile! Login to subscribe." msgstr "Quello è un profilo locale! Accedi per abbonarti." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Risposte a %s, pagina %d" @@ -4168,51 +4835,72 @@ msgstr "Risposte a %s, pagina %d" msgid "%s favorite notices, page %d" msgstr "Messaggi preferiti di %s, pagina %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Gruppi di %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Gruppi di %s, pagina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profilo del gruppo" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Feed dei messaggi per il gruppo %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membri" # femminile, è relativo alle etichette #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tutti i membri" @@ -4222,15 +4910,15 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Solo mittente e destinatario " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pagina %d" @@ -4241,30 +4929,37 @@ msgid "'s profile" msgstr "Profilo" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profilo utente" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Fotografia" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Azioni utente" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Invia un messaggio diretto a questo utente" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Messaggio" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tutti gli abbonati" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tutti i gruppi" @@ -4274,8 +4969,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4291,7 +4986,7 @@ msgstr "Inviami le notifiche via SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Un codice di conferma è stato inviato al numero di telefono aggiunto. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Operatore telefonico" @@ -4351,16 +5046,17 @@ msgstr "Queste sono le persone i cui messaggi " msgid "These are the people whose " msgstr "Queste sono le persone i cui " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Messaggi etichettati con %s, pagina %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messaggi etichettati con \"%s\", i più recenti" @@ -4382,7 +5078,7 @@ msgstr "Etichetta %s" msgid "Tag user" msgstr "Etichette utente" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4394,17 +5090,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "C'è stato un problema con il tuo token di sessione." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Impossibile salvare le etichette." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " @@ -4414,20 +5110,23 @@ msgstr "" msgid "No such tag." msgstr "Nessuna tale etichetta." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Micro-blog etichettati con %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blocco dell'utente non riuscito." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Sblocco dell'utente non riuscito." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trovato" @@ -4436,16 +5135,17 @@ msgstr "Non trovato" msgid "Add your Twitter account to automatically send " msgstr "Aggiungi il tuo account Twitter per inviare automaticamente " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nome utente di Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Password di Twitter" # elenca quali sono i propri amici su twitter -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amici su Twitter" @@ -4459,146 +5159,155 @@ msgstr "Il nome utente deve avere solo numeri, " msgid "Unable to retrieve account information " msgstr "Impossibile recuperare informazioni sull'account " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nessun ID di profilo nella richiesta." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Nessun profilo con quel ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Annullato abbonamento" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Gruppi di %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Gruppi di %s, pagina %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " "qualche minuto." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Carica un'immagine" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Altro" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Altre opzioni" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Ricerca persone o per testo" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Account" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connettiti con MI, SMS e Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sconnettiti dal sito" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Accedi con OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licenza del software statusnet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tutto " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licenza." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Blocca questo utente" # azione -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blocca" @@ -4613,12 +5322,15 @@ msgid "To use the %s Facebook Application you need to login " msgstr "" "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " un nuovo account." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Pubblicato" @@ -4638,32 +5350,37 @@ msgstr "Filtra etichette" msgid "All" msgstr "Tutto" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etichetta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Scegli un'etichetta per ridurre l'elenco" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Vai" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL della pagina web o del blog per il gruppo o l'argomento" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" # per renderla 'asessuale' il più possibile... -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" @@ -4673,20 +5390,20 @@ msgid "Group" msgstr "Gruppo" # potrebbe essere lunga... -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Amministra" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Modifica le proprietà del gruppo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Aggiungi o modifica il logo di %s" @@ -4718,11 +5435,11 @@ msgstr "Iscriviti" msgid "Leave" msgstr "Lascia" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Accedi con nome utente e password" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Iscriviti per un nuovo account" @@ -4744,17 +5461,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s sta ora seguendo " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Ubicazione: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Pagina web: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4763,7 +5480,7 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" @@ -4779,39 +5496,47 @@ msgid "%1$s just added your notice from %2$s" msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s" # è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Da" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Invia un messaggio diretto" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Invia un messaggio" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caratteri disponibili" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "in risposta a" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Elimina questo messaggio" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Elimina" @@ -4833,28 +5558,30 @@ msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" # femminile, è relativo alle etichette -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(nessuna)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Pubblico" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Gruppi dell'utente" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etichette recenti" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "In evidenza" # è una prova, è il nome di una scheda, al massimo si cambia, però popolari mi pare troppo banale. -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Famosi" @@ -4870,31 +5597,33 @@ msgstr "Ricerca gruppi in questo sito" msgid "Untitled section" msgstr "Sezione senza nome" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Persone a cui %s è abbonato" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Persone abbonate a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Il gruppo %s è membro di" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "L'utente ti ha bloccato." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Abbonati a questo utente" @@ -4907,11 +5636,12 @@ msgid "Top posters" msgstr "Chi scrive più messaggi" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Sblocca questo utente" # azione -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Sblocca" @@ -4919,6 +5649,2074 @@ msgstr "Sblocca" msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amici" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Qui puoi caricare la tua immagine personale." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Immagine aggiornata." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " +"possibile recuperarlo." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Scegli un'area quadrata per la tua immagine personale" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Micro-blog di %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Errore nell'inviare il messaggio diretto." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Ricerca \"%s\" nel flusso" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " +"propria password prima di modificare le impostazioni." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" a eccezione di questi dati personali: password, indirizzo email, indirizzo " +"messaggistica istantanea, numero di telefono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crea" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Profilo del gruppo" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profilo" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Casella posta inviata di %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Immagine" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Impostazioni del profilo" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un codice di conferma è stato inviato al numero di telefono che hai " +"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " +"per il codice e le istruzioni su come usarlo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Nessun tale utente" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " +"su Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Ricerca persone o per testo" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connettiti con MI, SMS e Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Richiama" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordiali saluti,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Ricerca" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Nessun tale documento." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profilo utente" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amici, pagina %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Sblocco dell'utente non riuscito." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codice di conferma" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Impossibile eliminare questo messaggio." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etichetta non valida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Soprannome già in uso. Prova con un altro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossibile creare preferito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuovo messaggio" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuovo messaggio" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Non è un soprannome valido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Nessun profilo specificato." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "L'utente ti ha bloccato." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blocca utente" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Devi eseguire l'accesso per creare un gruppo." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppi" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossibile aggiornare l'utente." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Impossibile salvare le tue impostazioni di Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferenze di sincronizzazione salvate." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Devi essere amministratore per modificare il gruppo" + +# potrebbe essere lunga... +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Amministra" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nessun risultato" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "L'utente ti ha bloccato." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Messaggio" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Impossibile salvare il profilo." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " +"account. Gestisci i tuoi OpenID associati da qui." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Impostazioni del profilo" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " +"per email all'indirizzo indicato nel tuo profilo." + +# per la par condicio ho sostituito 'sei stato identificato' +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Richiesta password di ripristino" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Errore con il codice di conferma." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abbonati a questo utente" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Messaggi preferiti di %s, pagina %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " + +# potrebbe essere lunga... +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Amministra" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Non un utente locale." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Messaggi etichettati con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s sta ora seguendo " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed dei messaggi per %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Questo messaggio è già un preferito!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Questo messaggio non è un preferito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossibile recuperare l'attività pubblica." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Nessun destinatario specificato." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Impossibile trovare un qualsiasi stato." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Aggiornamenti in risposta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licenza." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Abbonamenti di %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Impostazioni del profilo" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema nel salvare il messaggio." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Messaggio a %1$s su %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Profilo utente" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profilo" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Carica" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modifica la tua password" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connetti" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ricerca" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Elenco" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +# azione +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blocca" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Blocca utente" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Aggiungi o modifica il logo di %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Nessun contenuto!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Utente" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ricerca" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "L'URL della pagina web non è valido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nessuna tale etichetta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messaggi diretti a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossibile seguire l'utente: utente non trovato." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sei già un membro di quel gruppo" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossibile iscrivere l'utente %s al gruppo %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Gruppi di %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Il gruppo %s è membro di" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Azioni dei gruppi" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Troppo lungo. Lunghezza massima 140 caratteri." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato file immagine non supportato." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Fotografia" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utente che intendi seguire non esiste." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorizzato." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Impossibile convertire le credenziali di richiesta in credenziali di accesso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versione del protocollo OMB sconosciuta." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Nessun tale messaggio." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Perso il nostro file." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Questa pagina non è disponibile in un " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" +"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +# per renderla 'asessuale' il più possibile... +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" + +# per renderla 'asessuale' il più possibile... +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descrivi te e i tuoi " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia è troppo lunga (max 140 caratteri)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non è un URL di profilo valido (nessun documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Quello è un profilo locale! Accedi per abbonarti." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossibile ottenere un token di richiesta." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Messaggio a %1$s su %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Gruppi di %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Messaggio inviato" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Questa pagina non è disponibile in un " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " +"richiamo. Controlla le istruzioni del sito per i dettagli su come " +"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " +"richiamo. Controlla con le istruzioni del sito per i dettagli su come " +"rifiutare completamente l'abbonamento." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo di immagine errata per \"%s\"" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossibile redirigere al server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licenza del software statusnet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Richiamo inviato" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Rispondi a questo messaggio" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema nel salvare il messaggio." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nessun codice di conferma." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedi al sito" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Seleziona un operatore" + +# per renderla 'asessuale' il più possibile... +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" + +# per renderla 'asessuale' il più possibile... +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed dei messaggi per %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +# è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " via " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Impossibile eliminare un preferito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Elimina messaggio" + #~ msgid "Code not yet ready." #~ msgstr "Codice non ancora implementato." @@ -4941,9 +7739,6 @@ msgstr "Annulla l'abbonamento da questo utente" #~ msgid "Tag a person" #~ msgstr "Etichetta una persona" -#~ msgid "List" -#~ msgstr "Elenco" - #~ msgid "Icons" #~ msgstr "Icone" diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index 7026035cc0cc60133a71c238eb52ba6e6c2226ed..0226253b0086fc8ec5eeb6829b9154ee47b03d28 100644 GIT binary patch delta 18864 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 G_WuB}jL7`} delta 11901 zcmZYD2Y62B|Htw3h{OmYLCp{&c1Vm6LP*7^t@b7oLhMa>jHbla+h}dAs$KP{+C}YB zT3VD=HR!Nfv_<>V|NE13`~7-d|8remulxRXZ_!t?ylY_go2sJPi+v7kSfokYmjK!i=9mgL#qdM-1*)R$H za4>3M!!aMehFXaQn2r9O^%T^=HtS9dqP`b{@ib~huA!Fxfvp#abO&4>Um{-*HK6u3 zzYsN`^%#U(tp~6i^|R<*MB#S|x^PyMy9EnTBVUeTxEeLUL#T$1qh|CqYG5}|Tk#l+ zV4iA@QwS@d+Kor8XfxD`jzVq0qH3(aF4#>%OY#Y-gRhY7a&DovB&51~z8vZyt%q9T zuBhw#qMo4<7>u(}*R4QZw+A(#!&nr*vH3r$v;JWuo|8}mC2BZMDXfLccf~R|5jC?l zs2S`-b#N8);}e_DUDItR0$B_v0X5UHsAp)obq}haOI`{kDLljCSS;Gz%et74dOIwD z$*7fj4MT7`>RDKVn(=;{{~T*mzk%B0BDLHtjYkc*1*)ACR6E{b6v|VWj#`>6sF9yU zy;jdqOBX<^dIm~h9t=m#s0M0f+M%{$FluI#upq9%Fx-tV;T7wzNPk`@TZ}vN(x`_h z9@Rj1)PTG;zZ})TM>c;3wL(AH{NJbn<*VZwg<6@`sEPE!%-0b$u;Exh?|(W4UAP+6 z!H3q9s2i_iA-sdVF>76SNt3WF^`V#rm!MYYZOo0UF&Az{-M<&r{sqj6zhHLycOKZp z6D6qs2enrLv2H`9QLkGRYCy4=h)uCGZb3Ed&sRwgXE98{Skz3{V_`gqdX_Gu26P|2 zx-naQ_hBe*jY8ef2*a=^>S6MtX7)a6#XiDNJYl_s2dMkSxewW4)O&vtr{N>i%*Qlv zS88Gd)?YK8N}>tQLOs=AqB?qlTGD`qZb!LL9apr*qMnsjSQUq(I#`Rke?97H--&un z_hC^yk9vsjHuSoC^cM+zD6+@9PjOz<5{04mI0m(sy-`~+*w)7(FNl+dn#cjHfX7iY z{}mfy(U;w&?~Pi?F{p{G@>0-9w`1lWVdfs8_WC~RwR(n{Nlsc*J{UEyP}IO0q2A}V zSPJ`DXQ0~MgqqM%)WE()4Zxc{!JSbN)C|H=9aceIP#-nGHmD`*Y0nQvJv)<7OS=d) zkd3J8ccI!jifZQ~>bl#g3I2t=zFsG|vHJlDN1bS3>m4zI`f${US7T*7je6+*M0HSr z2d5Z@qqZgnseRe`hlVE!{y>!=G8NqGoUh)$uc1cbd5a z3_?8%p{V;RV0Mhbau{#(1F?HW-TK$(O}- z*c!9pV^qg~qgF6ibH}NM;i!RiMy*6Y)C!G7-8UKa?7Y#O^)EwVr9E*31F4@zecQiA z?cFb^j{ZV56xhOTI0SV*9Cbb#HIT-b1AAd0rl2|=jkwBoD`x8`0M=>{EvFCrpaO$2m?%PuiRre-P z(8vd&R$?Ru;cKW4=Ac$&J?e%XHh&p4(1(~4pQ4sNYg>2eLs1hehdN&$)lM_iv(^E5 z+q}+T3L5Ej%!>={1@EBV>%HiQmrzT771humSQ@jmvkxbhrQRBqAA@?Gm!bB0J7#|S zQQwcd7_9d{=d11?2*pqxG{>5ljGEC3)JlAWYWN&R;v;LB_HM%+Q0IqZ6fU-&z-a1E zF%=^_@ar0`#4!4Ix^{FsoQT(`e~6mlyiV>`EJLl#CRD@wP%Co})o{+vjuVFsu^LWA zJ-jbj?x3-fn%_pl@uryhga z!p^9HCZnE>v3MIN+k8?tcZei|Dg6Pu)90blBkBGQ5`qJJlGbC zVsF$6yoQC*hlTJgYL9QDo{6kI+zC`dZBb*?3JvVR`fIP>B%y{*BF}~M4^F{$J>9=@ zFQ9HL*~?w21k`=Ww!Q*&{(#NjKn}k&rLEShNwbaJe*P%YqyHG269ko(-P_Okf^hdwG?rWI?mG_2G=0f+T>e@)+oq@02STqolQ>bEfSVNKC* zN?uM#w3#AQAO;ckq&^7s#an`E_yktP2Us0T40Q+gDr#VfSQ(d~ z-l|Vg9X~^@jAxkpjD-$k{o9g=wuzb6wWx<@FY3l?sDWl+BtFF;tT@~qU>($TNvQi$ zQ60@gUAGBK<6hK?euo;U-w4)Uh3FCP1u3Wt=Ave{!+P81i;Q&haj1?)Vk=yXTA7>n ze6CUMbq!GYQMSGUb>Df^%0BekLg;AsL{rpE2BJP7!%<5(%hnHDzd?2U2y0;c827%h zSeN=_Ti=TXs2@hH+$Ge?WFPD5Eki*aHb9NE3F;{widwqys2kH!H||9>_%$}gyEb2Q zoO^#;)WFB1u749X<82s$=TQ&yb2smGLdUx&;!qb3#zHtB^$=~a^{?#t`>2NUPH?S{ z+Okws!wWG4x7+idT7N@Lu*5{SpC(vT?|%vfb(n^l=_;Ix=TIxq_BD44`k+?oE!11G z8nuU8P%Cl?HIRE)6hrvXYbC3ouCHzD38(?K#t6OteJK>g1(*jnV0Qc%XW$|1g-s{B z1Kfad)UP04XQwcYgyJOB0G4AI9llW= zqgLi6mZc;%!S65yOJGyJzYTBz8r+Clse04h6=;O2x57Hu0kwq-rnCNm6b_Qm5}iiP z;1X&}{zeU?!0YY}m9P@^E~p06P_yX17J=8${gPriDH{2y0g2~jUB7HbNSqHOUTFHmjvNPS4>xx>b*{GRs#xi)t zYYWd&11O#DcGwj)vym8w%WeHC>PEj=?##+#Q|hl`eO!Sx@v6-S^WoR^T~RCSMXk^r ztf=~C3hMZ4o5(%KJyF}5h?>zn)Ig5de3rTHbrIIi*6FB$Z^O!J7b~FOJhz_+RD1p0 zy4QJ&LVFVDupO3}&)@7g7Gv=OYQ%XLxHGAW+LHFDhjFlVK58pJ!~i^Ny@-0du38_V z1`xPV*RlU`nFW3+L^aUT)>BX&4MRPI={CO_%Tr&E`S6@I19MXU6Ki3XH{HFigL>Zw zpst^YrEosxrhjJ#1y<-y<_vG z7P(u}64lRW)P$CzSBb3@)ZjTx#_PBO8!vVTl7Z^r7i)nf?nBoAHPCcaI}0!bcUX^M z4E4*_kfrYV7N`OATFUxshNDSnsTZQ^n@|HfZtGuLAEG+S^OkEQYQ@^2uJ4W-P%0L} zk*F1#WAg{BM^XKJ_7>}(K;cIcYB=I;w}IA}mwHEQf8_ae#@X}Pmbo3~u@*;lTm?0= znwSflqaNPQs1C=Xt~1tUUJ80Y*J3Ij#~xUHxm#a|YT!Alfl&5E4aA^2YJi$~N7Mw8 zu?Ehx9;6hs84qxNBA&&Vb?%mCd(Slq%X|2(7=!5Fxx3!|F#L@#QP2CnTR8edhPb3Uej}^m3oHdFlwXw#p{Av$+^g`)aD;-aerC{Z*@&UZSi5$L;Dx1z2I%EzX~zi z+^4(`sy+qv`fb2ExX1b!i&3xof&1gM1y-e=iW<-g>p@h9-&>1pcUP`G#*yEM_3-EI ztp7X;Q68L19!PA8iJ}vAv@$u z;h#P@4pRy57%B|zzefR*Y1H~-ERmCPKCFz@2tJg~KI&?1uHCCOWghpeq7_kqXkzbEj_1{> zY3p++Pg9bk7r6n%Vzh2UQH1t8lt>{45v|Da24((@P>=Ew z$}ifPNWCJVW2{x>&6I~?TY}Gm^C9)Rg!d5tY$rY?CK2a3`4jRrc6b>w|I-%oq zrHD6)P~ydLobnT5)W34S*prvYy>83D<541sh$c#C+-oQ-<)W8}fs{+5J~~@*2p%E& zP(Fn#2z}diR3W#D&~b-YKsnCVOJWvs8N_PJ#V``TMjdx4KP7(jux@Wt;HR$Bh8V1~ z97*Kb<9{-1|NCbe`MFdlV-K57q^#oy>m|y&h_{J2LSM#kesL0K{Hq*k%V)T*2XW|s z&#mKpKw>trjf+0D7ha_vL%cYa*s?ykIx10bX>ES$Ek|l$$9PhFRj_EI{%~I z8xM&M#5oc#5yk8UvvdVVJ7OWZw!{Ns1u=xUPMFLq_zdG&>b3DToBND4Y51w<>dlK!57e^Z9id25a7Wg~< zj2-L+pHS~Y^rim9<}&-QWGiAj(aF{;Sfen48!r&cZBG13y*8nv8s2q_&imMvNG4|5 zoLFhEjmBogS`X`A_+J;OSk7Lga#7-Qq8U+x=*YRsL?CgSdL5#jz5W)~BG!@%z+6N_ z%C8W;2^}ZM-5^G*OqA98|BylllKOG0;}K;YFB5MPgQ@4VIpqWO4@Wnfn`*s9ZZBm& z{6ZISyhi;Sq7kv2_pD)6Ag%CgpRK`nGb`B9mE#ubBLvsXW&EPKIQN6 z0=`NlP}cDSafaAOtRo)VJjKjoDD~%*QuY4tuqSt0Q*e^KP#mDXz}9zT1L|SKPU0)- zKM}!{{~&Hq9)qQEG~Op#6Lp9(L>@xNd&HN-Ozpppr^I#QJ1#gzG@<+|w#M;e->?_h4?Ps$$?^9dabiL69@TVF&uf%t&PO|Bp@oAP5~9_8soKcYBwuRjGH*Ib;e z)O!>AsZX~#F@PvUz9XK*R|p;N;AA{(>z`0QO?f_!w>gT=Ta>R5eQhq0+(nOmN}Iva zZ<@BXikNk^@|#t)`kQxZcQ&PCYMYfYp(bCQ-oDLso@6m$^{bfy^($sg9+fo0oT~qq zxfplJeAu9Zxick~320c%#5XKt#x*?VKcLT${z<;H_`05~qxvL{GSQ8yo9T^$P0@rx zCT~KZiA!i~HYd#U^=%yNF*BOfFi)DKn3Sfw&A?`@OrBSYnDeg`@#Sis>M?U$+%{<~ zo0;aVa+wCLa+*!87Mu55*D$}fE@x`BnQ1PzIbd?P+vq#p?m`yd<_;4)CbCl%->6Qz zJf>-v2|21}8ece(`qwX6_tscwF zjUFY;_MZN}#=V|-d~N$Q^O*aIpP0}4RW#X>s+jsoVP;3tBGW6mj`=)!pE=OKvU%3O zl&Lmgt}ijApvP<<_@h}pDAas0sF|sg+Q7Fs^*Q<<*yqNK3pWeLbvAj&Hz_bAC2`P@K7*5-4kMFBgbf=pG&v!VYKBEc*Qr*cQe>p> z?9?ZofQ+fLGp41RsjrVS2VP%g4x|+~1>Z<8hu^5;7d|q~WII{P?4B{%WGoBzEuPsT zt0^{j|*b9zRkum8N9o`9b=Y`wK@nHe^}g86w-klA)F%=|fjwn<-* zXeunMW~MCcZkoKC+niZd*jMMxK#y;a+3pF-nC8ov?#r0=NyfAfGN#Wo=a#-=4lb!- zCM@k}9xwgTL@tl>wS0T2#{?}8Gil4yeFat&@R&I(YX{t3KkcXWQ_bU56@86XpYxb? zYl@q>YeRgK*0%SUpWoSH`mD<^$KPvhs;nPwj;`Nk;;+m!oj3G0Q5&!OqBfoI3%Ipr z=k4?nXCJ%m_GYH^Ud6!-D8#>i1dAYu&ke{cR0e=@JO0x$FUTTdG~l- zQ~5+O^WE`q)BHq7Q}AR6Yr5Q=IN8@MI8w^YICa?cK3&|*BaWP|WSW0=)~q{o#f&&# z%y;r^36J@0T0!G~uAGTImuSwO8~ARM^M1ZP7t;NGr>|V}m@`+0`$kB%Zefw|K^)tDD3^c8N Zp2q`I*o6JE!KB|gV;\n" "Language-Team: LANGUAGE \n" @@ -24,14 +24,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "\"%s\" のストリームを検索" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" @@ -42,17 +42,19 @@ msgid " from " msgstr "から" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -84,6 +86,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたの通知を聞いています。" @@ -106,25 +109,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$ のステータス %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s パブリックストリーム" @@ -134,40 +140,55 @@ msgstr "%s パブリックストリーム" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s & ともだち" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s パブリックタイムライン" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s ステータス" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s タイムライン" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -176,7 +197,8 @@ msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブロギングサービスです。 " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** はマイクロブロギングサービスです。" @@ -188,30 +210,35 @@ msgstr "コントリビューターはニックネームかフルネームで記 #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です" +msgstr "" +"1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6文字以上" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6文字以上。お忘れなく!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6文字以上が必須です。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -221,6 +248,7 @@ msgstr "" "sを承認して下さい。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -250,7 +278,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -273,16 +328,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "About" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "承認" @@ -293,6 +355,9 @@ msgstr "承認" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "追加" @@ -310,27 +375,29 @@ msgstr "OpenIDを追加または削除" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "住所" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "全てのサブスクリプション" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%sの全てのサブスクリプション" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" にヒットするすべてのアップデート" @@ -340,30 +407,37 @@ msgstr "\"%s\" にヒットするすべてのアップデート" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "既にログインしています。" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "既に購読しています。" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "購読を許可" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "将来的には非共用PCでの自動ログイン" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -371,15 +445,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "アバター" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "アバターが更新されました。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -389,13 +467,14 @@ msgstr "" "を追加していますか?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -407,6 +486,8 @@ msgstr "前 >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "バイオグラフィ" @@ -414,16 +495,18 @@ msgstr "バイオグラフィ" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "この通知を削除できません。" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "アバターURL を読み取れません '%s'" @@ -431,6 +514,8 @@ msgstr "アバターURL を読み取れません '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "新しいパスワードを保存できません。" @@ -438,31 +523,34 @@ msgstr "新しいパスワードを保存できません。" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "キャンセル" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID consumer object を生成できません。" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "その Jabbar ID を正規化できません" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "変更" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "メールの扱いを変更" @@ -472,11 +560,12 @@ msgid "Change password" msgstr "パスワードの変更" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "パスワードの変更" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "プロファイル設定の変更" @@ -486,6 +575,9 @@ msgstr "プロファイル設定の変更" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "確認" @@ -498,12 +590,14 @@ msgstr "アドレスの確認" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "確認作業がキャンセルされました。" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "確認コード" @@ -512,7 +606,8 @@ msgstr "確認コード" msgid "Confirmation code not found." msgstr "確認コードが見つかりません。" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -532,20 +627,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "接続" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "既存のアカウントと接続" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "コンタクト" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenIDを作成できません : %s" @@ -553,35 +652,39 @@ msgstr "OpenIDを作成できません : %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "サーバへリダイレクトできません : %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "アバターを保存できません" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "新しいプロファイルを保存できません" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -601,15 +704,17 @@ msgstr "リクエストトークンをアクセストークンに変換できま #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "サブスクリプションを削除できません" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -622,29 +727,38 @@ msgstr "リクエストトークンを取得できません" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "確認コードを追加できません" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "プロファイルを保存できません" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -660,42 +774,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "ユーザを更新できません" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "作成" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "このニックネームで新しくユーザを作成" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "アカウントを作成" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "既にユーザの存在するOpenIDでアカウントを作成しています" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "確認された最新の Jabber/GTakk アドレス" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -704,23 +824,27 @@ msgid "Currently" msgstr "最新" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "返信を追加する際にデータベースエラー : %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "140字以内で自己紹介" @@ -728,11 +852,13 @@ msgstr "140字以内で自己紹介" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "メール" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -742,39 +868,43 @@ msgid "Email Settings" msgstr "メール設定" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "メールアドレスが既に存在します。" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "メールアドレス確認" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "メールアドレス" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "ニックネームかメールアドレスを入力してください。" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "認証トークンエラー" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "ユーザとOpenIDとの接続エラー" @@ -785,39 +915,46 @@ msgstr "ユーザ接続エラー" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "アバター追加エラー" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "プロファイル追加エラー" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "リモートプロファイル追加エラー" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "アドレス確認保存エラー" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "リモートプロファイル保存エラー" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "プロファイル保存エラー" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "ユーザ保存エラー" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "ユーザ保存エラー; 不正なユーザ" @@ -826,6 +963,9 @@ msgstr "ユーザ保存エラー; 不正なユーザ" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "ユーザ設定エラー" @@ -836,6 +976,7 @@ msgstr "プロファイル更新エラー" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "リモートプロファイル更新エラー" @@ -845,33 +986,36 @@ msgid "Error with confirmation code." msgstr "確認コードにエラーがあります。" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "既に存在するニックネーム" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "よくある質問" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "アバターの更新に失敗しました。" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s のともだちのフィード" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s の返信のフィード" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -886,7 +1030,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -899,6 +1043,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "フルネーム" @@ -907,23 +1056,33 @@ msgstr "フルネーム" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "フルネームが長すぎます。(255字まで)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "ヘルプ" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "ホーム" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "ホームページ" @@ -931,21 +1090,27 @@ msgstr "ホームページ" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IMアドレス" @@ -955,7 +1120,7 @@ msgid "IM Settings" msgstr "IM設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -963,13 +1128,13 @@ msgstr "" "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" "連付けて下さい。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "OpenIDを追加する場合、下のボックスにある\"Add\"をつリックして下さい。" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -978,55 +1143,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "古いパスワードが間違っています。" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "ユーザ名またはパスワードが間違っています。" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "不正なアバターURL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "不正なメールアドレス:%s'" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "不正なホームページ '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "不正なライセンスURL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "不正な通知内容" @@ -1041,13 +1213,13 @@ msgid "Invalid notice url" msgstr "不正な通知url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "不正なプロファイルURL '%s'。" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "不正なプロファイルURL。(形式不備)" @@ -1065,44 +1237,52 @@ msgstr "不正なサイズ。" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動い" -"ています。 ライセンス [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)。" +"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" +"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID jは既に別のユーザが使用しています。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1112,12 +1292,14 @@ msgstr "" "IMクライアントやGTalkに追加して下さい。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1126,7 +1308,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "場所" @@ -1135,7 +1325,12 @@ msgstr "場所" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "場所が長すぎます。(255字まで)" @@ -1144,18 +1339,22 @@ msgstr "場所が長すぎます。(255字まで)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "ログイン" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%) でログイン。" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1163,22 +1362,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "ログアウト" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "パスワードを紛失、忘れた?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1189,16 +1392,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "からのメンバー" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "マイクロブログ by %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1208,42 +1413,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "の下でテキスト及びファイルを利用可能" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新しいニックネーム" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新しい通知" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新しいパスワード" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新しいパスワードの保存に成功しました。ログインしています。" @@ -1253,7 +1466,13 @@ msgstr "新しいパスワードの保存に成功しました。ログインし #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "ニックネーム" @@ -1262,7 +1481,12 @@ msgstr "ニックネーム" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" @@ -1271,49 +1495,60 @@ msgstr "そのニックネームは既に使用されています。他のもの #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" "できません。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "そのニックネームは使用できません。" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "フォローしたいユーザのニックネーム" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "ニックネームまたはメールアドレス" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabbar ID はありません。" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "認証のリクエストがありません。" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1325,11 +1560,15 @@ msgstr "確認コードがありません。" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "コンテンツがありません!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1338,7 +1577,9 @@ msgid "No id." msgstr "id がありません。" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1349,6 +1590,7 @@ msgstr "リモートユーザのニックネームがありません。" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "ニックネームがありません。" @@ -1356,12 +1598,14 @@ msgstr "ニックネームがありません。" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "認証待ちのものはありません。" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1371,7 +1615,8 @@ msgid "No profile URL returned by server." msgstr "サーバから提供されるプロファイルURLはありません。" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "そのユーザにはメールアドレスの登録がありません。" @@ -1383,7 +1628,7 @@ msgstr "リクエストがありません!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "結果なし" @@ -1394,12 +1639,16 @@ msgstr "サイズがありません。" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1409,13 +1658,15 @@ msgid "No such OpenID." msgstr "そのようなOpenIDはありません。" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "そのようなドキュメントはありません。" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "そのような通知はありません。" @@ -1453,12 +1704,22 @@ msgstr "そのようなサブスクリプションはありません。" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "そのようなユーザはいません。" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1472,32 +1733,38 @@ msgid "Not a recovery code." msgstr "回復コードではありません。" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "有効な Jabber ID ではありません。" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "有効な OpenID ではありません。" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" @@ -1505,6 +1772,11 @@ msgstr "有効なメールアドレスではありません。" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" @@ -1524,7 +1796,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "画像ではないかファイルが破損しています。" @@ -1535,11 +1808,13 @@ msgstr "認証されていません。" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "想定外のレスポンスです!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1555,11 +1830,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "ログインしていません。" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "購読していません!" @@ -1576,39 +1855,44 @@ msgid "Notice feed for %s" msgstr "%sの通知フィード" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "通知にはプロファイルはありません。" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "通知" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "古いパスワード" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID アカウントセットアップ" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 自動提示" @@ -1616,29 +1900,34 @@ msgstr "OpenID 自動提示" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID ログイン" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID での認証がキャンセルされました。" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID での認証に失敗しました : %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 障害 : %s" @@ -1654,11 +1943,12 @@ msgid "OpenID settings" msgstr "OpenID 設定" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "不完全なアップロード。" @@ -1668,34 +1958,46 @@ msgstr "不完全なアップロード。" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "パスワード" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "パスワードと確認が一致しません。" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "パスワードは6字以上でなければいけません。" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "パスワード回復のリクエストされました" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "パスワードが保存されました。" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "パスワードが一致しません。" @@ -1715,14 +2017,17 @@ msgid "People search" msgstr "ピープルサーチ" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "パーソナル" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2041,7 @@ msgstr "" "キャンセルをクリックして下さい。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" @@ -1745,7 +2050,9 @@ msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。 #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "設定" @@ -1754,42 +2061,52 @@ msgstr "設定" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "設定が保存されました。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "プライバシー" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "通知を保存する際に問題が発生しました。" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "プロファイル" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "プロファイルURL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "プロファイル設定" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "プロファイルが不明" @@ -1798,17 +2115,19 @@ msgid "Public Stream Feed" msgstr "パブリックフィード" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "パブリックタイムライン" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1818,12 +2137,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "回復" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "パスワードを回復" @@ -1836,37 +2157,45 @@ msgstr "不明なユーザのための回復コード。" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "登録" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "拒否" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "ログイン状態を保持" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "リモートプロファイルと一致するものがありません" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "リモートサブスクライブ" @@ -1880,6 +2209,9 @@ msgstr "リモートサブスクライブ" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "削除" @@ -1888,7 +2220,7 @@ msgstr "削除" msgid "Remove OpenID" msgstr "OpenID を削除" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1897,34 +2229,41 @@ msgstr "" "OpenID を追加して下さい。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "返信" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s への返信" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "リセット" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "パスワードをリセット" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1933,17 +2272,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "上と同じパスワード" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1956,12 +2296,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "保存" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "検索" @@ -1971,14 +2320,14 @@ msgid "Search Stream Feed" msgstr "ストリームフィードを検索" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1987,48 +2336,56 @@ msgstr "" "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "送る" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "設定" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "設定が保存されました。" @@ -2048,27 +2405,32 @@ msgid "Something weird happened." msgstr "不測の事態が発生しました。" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "ソース" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "統計データ" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "保存された OpenID は見つかりません。" @@ -2076,24 +2438,28 @@ msgstr "保存された OpenID は見つかりません。" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "購読" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "購読者" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "購読が許可" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "購読が拒否" @@ -2101,28 +2467,35 @@ msgstr "購読が拒否" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "サブスクリプション" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "文字検索" @@ -2142,6 +2515,7 @@ msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2151,63 +2525,73 @@ msgid "That file is too big." msgstr "ファイルサイズが大きすぎます。" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "長すぎます。通知は最大 140 字までです。" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" @@ -2216,18 +2600,22 @@ msgstr "アドレス \"%s\" はあなたのアカウントとして承認され #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "アドレスは削除されました。" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2235,33 +2623,38 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s の通知を聞いている人" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "あなたの通知を聞いている人" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s が通知を聞いている人" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "あなたが通知を聞いている人" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "確認コードが古すぎます。もう一度やり直してください。" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2270,7 +2663,7 @@ msgstr "" "クリックして下さい。OpenIDプロバイダへ転送されます。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2284,6 +2677,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2292,25 +2688,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2323,18 +2731,21 @@ msgstr "" "下さい." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" @@ -2346,15 +2757,22 @@ msgstr "プロファイルサービスまたはマイクロブロギングサー #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "予期せぬフォーム送信です。" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "予期せぬパスワードのリセットです。" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2385,38 +2803,47 @@ msgstr "サブスクライブ中止" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "サポート外の OMB バージョン" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "アップロード" @@ -2437,12 +2864,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" @@ -2466,11 +2896,16 @@ msgstr "リストされているユーザは存在しません。" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "プロファイルがありません。" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "ユーザのニックネーム" @@ -2479,29 +2914,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "最近どう %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "いる場所, 例えば \"City, State (or Region), Country\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "不正な画像形式。'%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "不正な画像サイズ。'%s'" @@ -2509,7 +2948,9 @@ msgstr "不正な画像サイズ。'%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2530,11 +2971,12 @@ msgid "You are already logged in!" msgstr "既にログイン済みです。" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2552,13 +2994,14 @@ msgstr "アカウントを作成して通知の投稿が可能です。" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "\"削除\"をクリックして OpenID を削除できます。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2567,7 +3010,8 @@ msgstr "" "Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" "す。下のアドレスを設定して下さい。" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2578,21 +3022,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "ローカルサブスクリプションを使用可能です!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "ライセンスに同意頂けない場合は登録できません。" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "そのプロファイルは送信されていません。" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2606,35 +3052,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "確認されました。新しいパスワードを入力して下さい。" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "あなたの OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "このサーバでのニックネーム、または登録したメールアドレス。" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2643,47 +3093,57 @@ msgstr "" "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" "することができます。ここで関連付ける OpenID を管理して下さい。" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "数秒前" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "約 1 日前" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "約 1 分前" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "約 1 年前" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "約 1 時間前" @@ -2705,12 +3165,14 @@ msgid "reply" msgstr "返信" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "上のパスワードと同じ" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2732,6 +3194,26 @@ msgstr "<< 前" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2740,6 +3222,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2747,22 +3230,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2772,11 +3261,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2816,33 +3307,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2896,6 +3398,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2924,6 +3431,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2944,12 +3453,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2957,7 +3469,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2981,51 +3493,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3044,14 +3575,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3060,6 +3594,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3068,24 +3603,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3096,33 +3636,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3139,18 +3689,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3160,89 +3711,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3250,11 +3823,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3269,7 +3842,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3281,7 +3854,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3290,31 +3863,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3327,14 +3908,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s & ともだち" @@ -3344,22 +3930,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "設定" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3376,35 +3972,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "そのような通知はありません。" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "そのようなユーザはいません。" @@ -3413,12 +4018,12 @@ msgstr "そのようなユーザはいません。" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "既にログイン済みです。" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3435,40 +4040,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "ニックネームがありません。" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "そのような通知はありません。" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3480,16 +4103,17 @@ msgstr "" "できません。" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "ユーザを更新できません" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "設定が保存されました。" @@ -3507,7 +4131,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3523,7 +4148,7 @@ msgstr "" "確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" "sを承認して下さい。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3537,54 +4162,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "コンテンツがありません!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "<< 前" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "前 >>" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s のともだちのフィード" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3630,12 +4270,14 @@ msgstr "" msgid "Sync preferences" msgstr "設定" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "そのような通知はありません。" @@ -3650,7 +4292,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3664,15 +4307,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3680,12 +4325,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "アバターが更新されました。" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "アバターの更新に失敗しました。" @@ -3705,7 +4352,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3720,6 +4368,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "アカウントを作成" @@ -3731,7 +4380,7 @@ msgid "" msgstr "" "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "ピープルサーチ" @@ -3755,21 +4404,21 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent " msgstr "確認コードがありません。" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "既にログイン済みです。" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "サーバへリダイレクトできません : %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3778,16 +4427,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "そのような通知はありません。" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "そのプロファイルは送信されていません。" @@ -3796,21 +4448,25 @@ msgstr "そのプロファイルは送信されていません。" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenIDを作成できません : %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3822,16 +4478,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "アバターを保存できません" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "サブスクリプションを作成できません" @@ -3845,12 +4503,15 @@ msgstr "ファイルサイズが大きすぎます。" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "通知" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3867,7 +4528,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID ログイン" @@ -3895,11 +4556,13 @@ msgstr "" msgid "Service" msgstr "検索" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "場所が長すぎます。(255字まで)" @@ -3909,17 +4572,18 @@ msgstr "場所が長すぎます。(255字まで)" msgid "Change your password." msgstr "パスワードの変更" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "パスワードが保存されました。" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "有効なメールアドレスではありません。" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3929,12 +4593,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "プロファイルが不明" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3944,21 +4609,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "不正なホームページ '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "プロファイルを保存できません" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "パブリックタイムライン" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3979,11 +4649,13 @@ msgstr "パブリックフィード" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4039,7 +4711,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s への返信" @@ -4049,53 +4722,74 @@ msgstr "%s への返信" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "そのような通知はありません。" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "通知" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%sの通知フィード" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "からのメンバー" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4110,7 +4804,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4121,32 +4815,39 @@ msgid "'s profile" msgstr "プロファイル" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "プロファイルがありません。" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "購読者" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4172,7 +4873,7 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent to the phone number you added. " msgstr "その確認コードはあなたのものではありません!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4236,17 +4937,18 @@ msgstr "%s が通知を聞いている人" msgid "These are the people whose " msgstr "%s の通知を聞いている人" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabbar ID はありません。" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "マイクロブログ by %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4270,7 +4972,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4280,17 +4982,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "アバターを保存できません" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4299,20 +5001,23 @@ msgstr "" msgid "No such tag." msgstr "そのような通知はありません。" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "マイクロブログ by %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "ユーザのブロックに失敗しました。" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "ユーザのアンブロックに失敗しました。" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "見つかりません。" @@ -4320,15 +5025,16 @@ msgstr "見つかりません。" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitterパスワード" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitterフレンド" @@ -4341,147 +5047,156 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "アカウント情報を取得できません" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "ブロックの削除エラー" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "リクエスト内にプロファイルIDがありません。" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "そのIDはプロファイルではありません。" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "サブスクライブ解除済み" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s グループ" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s グループ, %d ページ" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "通知を保存する際に問題が発生しました。" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "アバターのアップロード" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "その他" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "その他のオプション" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "アカウント" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "IM、SMS、Twitterに接続" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "OpenIDでログイン" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "助けて!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新しい通知" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新しい通知" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "サブスクリプション" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ライセンス。" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "このユーザをブロックする" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "ブロック" @@ -4494,11 +5209,14 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "新しいアカウント" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "発行済" @@ -4518,31 +5236,36 @@ msgstr "タグのフィルター" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "タグ" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "移動" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "グループやトピックのホームページやブログの URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "概要" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "グループやトピックを140字以内記述" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4552,20 +5275,20 @@ msgstr "いる場所, 例えば \"City, State (or Region), Country\"" msgid "Group" msgstr "グループ" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "管理者" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "%s グループプロパティを編集" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "ロゴ" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "%s ロゴの追加や編集" @@ -4596,11 +5319,11 @@ msgstr "参加" msgid "Leave" msgstr "離れる" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "ユーザ名とパスワードでログイン" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "新しいアカウントでサインアップ" @@ -4620,24 +5343,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "場所: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "ホームページ: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に突かれています" @@ -4652,40 +5375,48 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接通知を送る" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "通知を送る" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "利用可能な文字" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "...に対しての返信" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "この通知へ返信" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "この通知を削除" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "削除" @@ -4706,27 +5437,29 @@ msgstr "このユーザへ突きを送る" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(なし)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "パブリック" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "ユーザグループ" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "最近のタグ" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "人気" @@ -4742,32 +5475,34 @@ msgstr "このサイト上のグループを検索する" msgid "Untitled section" msgstr "名称未設定のセクション" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "リモートサブスクライブ" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "リモートサブスクライブ" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "プロファイルがありません。" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "購読が許可" @@ -4781,10 +5516,11 @@ msgid "Top posters" msgstr "上位投稿者" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "このユーザをアンブロックする" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "アンブロック" @@ -4792,6 +5528,2014 @@ msgstr "アンブロック" msgid "Unsubscribe from this user" msgstr "このユーザからのサブスクライブを解除する" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s & ともだち" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "アバターが更新されました。" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "マイクロブログ by %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\" のストリームを検索" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" +"て下さい。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "パブリックフィード" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "パブリックフィード" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "パブリックフィード" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "作成" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "そのような通知はありません。" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "プロファイル" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "アバター" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "プロファイル設定" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "その確認コードはあなたのものではありません!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "そのようなユーザはいません。" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "アカウント情報を取得できません" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "人々かテキストを検索" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "IM、SMS、Twitterに接続" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "突く" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" +"連付けて下さい。" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s は %2$s であなたの通知を聞いています。\n" +"\n" +"\t%3$s\n" +"\n" +"確かにあなたの,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "検索" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "そのようなドキュメントはありません。" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "サーバへリダイレクトできません : %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "このユーザをブロックする" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "プロファイルがありません。" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s & ともだち" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "ユーザのアンブロックに失敗しました。" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "確認コード" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "この通知を削除できません。" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "不正なホームページ '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "アバターを保存できません" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新しい通知" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新しい通知" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "有効なニックネームではありません。" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "プロファイルがありません。" + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "そのようなユーザはいません。" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "ユーザを更新できません" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "設定が保存されました。" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "管理者" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "結果なし" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "プロファイルがありません。" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "プロファイルを保存できません" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" +"することができます。ここで関連付ける OpenID を管理して下さい。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "プロファイル設定" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができま" +"す。" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "確認されました。新しいパスワードを入力して下さい。" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "パスワード回復のリクエストされました" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "確認コードにエラーがあります。" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "購読が許可" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "そのような通知はありません。" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "管理者" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "そのようなユーザはいません。" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s は %2$s であなたの通知を聞いています。" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "ユーザを更新できません" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "ユーザを更新できません" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$ のステータス %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "マイクロブログ by %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "ライセンス。" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "全てのサブスクリプション" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "プロファイル設定" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "通知を保存する際に問題が発生しました。" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "プロファイルがありません。" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "プロファイル" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "アップロード" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "パスワードの変更" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "接続" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "検索" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "ログイン" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "ブロック" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "そのようなユーザはいません。" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s ロゴの追加や編集" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "コンテンツがありません!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "検索" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "ホームページのURLが不適切です。" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "そのような通知はありません。" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "サーバへリダイレクトできません : %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "既にログイン済みです。" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "サーバへリダイレクトできません : %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenIDを作成できません : %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s グループ" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "メンバー数が多いグループ" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "このサイト上のグループを検索する" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "サポート外の画像形式です。" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "リストされているユーザは存在しません。" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "認証されていません。" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "リクエストトークンをアクセストークンに変換できません" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "予期せぬ OMB プロトコルのバージョンです。" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "そのような通知はありません。" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "そのような通知はありません。" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" にヒットするすべてのアップデート" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140字以内で自己紹介" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "140字以内で自己紹介" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "リクエストトークンを取得できません" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s への返信" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%sの通知フィード" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "通知" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "アバターURL を読み取れません '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "不正な画像形式。'%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "サーバへリダイレクトできません : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "新しい通知" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "サーバへリダイレクトできません : %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "この通知へ返信" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "通知を保存する際に問題が発生しました。" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "確認コードがありません。" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "サイトへログイン" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "グループやトピックを140字以内記述" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "グループやトピックを140字以内記述" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%sの通知フィード" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s は %2$s であなたの通知を聞いています。" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "から" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "新しい通知" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "アカウントを作成" @@ -4804,10 +7548,3 @@ msgstr "このユーザからのサブスクライブを解除する" #~ msgid "Error inserting notice" #~ msgstr "通知追加エラー" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができ" -#~ "ます。" diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index 2b177ff86b9e6e8a0a54923d3bf5e77050713af7..a57340724f4f01d18b15f95471e2fd3a63dbc6f7 100644 GIT binary patch delta 29158 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

h@b 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 delta 20888 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\n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "스트림에서 \"%s\" 검색" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" @@ -35,17 +35,19 @@ msgid " from " msgstr "다음에서:" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / %2$s에게 답신 업데이트" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -77,10 +79,11 @@ msgid "" msgstr "" "%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" "\n" -"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽을 수 있는 마이크로블로깅 서비스 입니다.\n" +"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" +"을 수 있는 마이크로블로깅 서비스 입니다.\n" "\n" -"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 " -"장소입니다.\n" +"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" +"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" "%1$s님이 말하기를:\n" "%4$s\n" "\n" @@ -97,6 +100,7 @@ msgstr "" "%2$s 보냄\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." @@ -117,25 +121,28 @@ msgstr "" "그럼 이만,%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s 퍼블릭 스트림" @@ -145,40 +152,57 @@ msgstr "%s 퍼블릭 스트림" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s 및 친구들" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임라인" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s 상태" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 타임라인" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "모두로부터의 업데이트 %s개!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" -msgstr "(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습니다.)" +msgstr "" +"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" +"니다.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -187,7 +211,8 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." @@ -199,47 +224,60 @@ msgstr ". 가입자는 이름이나 별명으로 기재되어야 합니다." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 입력." +msgstr "" +"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " +"입력." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6글자 이상" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6글자 이상, 잊어 버리지 마십시오!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6글자 이상이 필요합니다." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." -msgstr "추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전달할 수 있습니다." +msgstr "" +"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" +"달할 수 있습니다." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." -msgstr "추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgstr "" +"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" +"와 사용법을 확인하여 주시기 바랍니다." #: ../actions/smssettings.php:216 actions/smssettings.php:224 msgid "" "A confirmation code was sent to the phone number you added. Check your inbox " "(and spam box!) for the code and instructions on how to use it." -msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -259,7 +297,34 @@ msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함( #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API 메서드를 찾을 수 없습니다." @@ -282,16 +347,23 @@ msgstr "API 메서드를 찾을 수 없습니다." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "정보" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "수락" @@ -302,6 +374,9 @@ msgstr "수락" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "추가" @@ -319,27 +394,29 @@ msgstr "OpenID 추가 또는 삭제" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "주소" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "초청할 친구들의 주소 (한 줄에 한 명씩)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "모든 예약 구독" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s의 모든 업데이트" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" 에 일치하는 모든 업데이트" @@ -349,30 +426,37 @@ msgstr "\"%s\" 에 일치하는 모든 업데이트" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "이미 로그인 하셨습니다." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "이미 구독하고 있습니다." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "정말로 통지를 삭제하시겠습니까?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "구독을 허가" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "나에게 구독하는 사람에게 자동 구독 신청" @@ -380,29 +464,38 @@ msgstr "나에게 구독하는 사람에게 자동 구독 신청" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "아바타" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "아바타가 업데이트 되었습니다." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" -msgstr "이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항목을 추가하셨습니까?)" +msgstr "" +"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" +"목을 추가하셨습니까?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." -msgstr "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 주시기 바랍니다." +msgstr "" +"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " +"주시기 바랍니다." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "이 전화 번호는 인증 대기중입니다." @@ -413,6 +506,8 @@ msgstr "뒤로 >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "자기소개" @@ -420,16 +515,18 @@ msgstr "자기소개" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." @@ -437,6 +534,8 @@ msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "새 비밀번호를 저장 할 수 없습니다." @@ -444,31 +543,34 @@ msgstr "새 비밀번호를 저장 할 수 없습니다." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "취소" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID consumer object를 생성할 수 없습니다." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "그 Jabbar ID를 정규화 할 수 없습니다." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "변환" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "이메일 처리 변경" @@ -478,11 +580,12 @@ msgid "Change password" msgstr "비밀번호 바꾸기" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "비밀번호 바꾸기" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" @@ -492,6 +595,9 @@ msgstr "프로필 세팅 바꾸기" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "인증" @@ -504,12 +610,14 @@ msgstr "주소 인증" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "인증 취소" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "인증 코드" @@ -518,7 +626,8 @@ msgstr "인증 코드" msgid "Confirmation code not found." msgstr "인증 코드가 없습니다." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -536,31 +645,40 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아래의 일을 할 수 있습니다...\n" +"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" +"래의 일을 할 수 있습니다...\n" "\n" "* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" -"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통보를 받아 보십시오.\n" -"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 분들을 찾아 보십시오. \n" -"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에게 자신을 알려보십시오. \n" -"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시오. \n" +"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" +"보를 받아 보십시오.\n" +"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " +"분들을 찾아 보십시오. \n" +"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" +"게 자신을 알려보십시오. \n" +"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" +"오. \n" "\n" "다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "연결" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "기존의 계정으로 접속" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "연락하기" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID를 작성 할 수 없습니다 : %s" @@ -568,35 +686,39 @@ msgstr "OpenID를 작성 할 수 없습니다 : %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "따라가실 수 없습니다 : %s 님은 이미 리스트에 있습니다." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "따라가실 수 없습니다 : 사용자가 없습니다." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "서버에 재접속 할 수 없습니다 : %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "아바타(Avatar)를 저장 할 수 없습니다." #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "새 프로필 정보를 저장 할 수 없습니다." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "구독 하실 수 없습니다." @@ -616,15 +738,17 @@ msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니 #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "이메일 승인을 삭제 할 수 없습니다." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "예약 구독을 삭제 할 수 없습니다." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "어떠한 상태도 찾을 수 없습니다." @@ -637,29 +761,38 @@ msgstr "리퀘스트 토큰을 취득 할 수 없습니다." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "확인 코드를 추가 할 수 없습니다." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "프로필을 저장 할 수 없습니다." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "사용자 기록을 업데이트 할 수 없습니다." @@ -675,42 +808,48 @@ msgstr "사용자 기록을 업데이트 할 수 없습니다." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "사용자를 업데이트 할 수 없습니다." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "생성" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "이 닉네임으로 새 사용자를 생성" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "새 계정을 생성" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "이미 사용자가 있는 OpenID로 새 계정을 생성" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "확인된 최신의 Jabber/GTalk 계정" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "확인된 최신의 이메일 계정" @@ -719,23 +858,27 @@ msgid "Currently" msgstr "최신" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "통지 삭제" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "140자 이내에서 자기 소개" @@ -743,11 +886,13 @@ msgstr "140자 이내에서 자기 소개" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "이메일" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "이메일 주소" @@ -757,39 +902,43 @@ msgid "Email Settings" msgstr "이메일 세팅" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "이메일 주소가 이미 존재 합니다." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "이메일 주소 확인서" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "\"UserName@example.org\" 와 같은 이메일 계정" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "이메일 주소" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "별명이나 이메일 계정을 입력하십시오." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "휴대폰으로 받으신 인증번호를 입력하십시오." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "인증 토큰 에러" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "OpenID로 접속 오류" @@ -800,39 +949,46 @@ msgstr "사용자의 접속 오류" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "아바타 추가 오류" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "새 프로필 추가 오류" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "리모트 프로필 추가 오류" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "주소 확인 저장 에러" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "리모트 프로필 저장 오류" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "프로필 저장 오류" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "사용자 저장 오류" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "사용자 저장 오류; 무효한 사용자" @@ -841,6 +997,9 @@ msgstr "사용자 저장 오류; 무효한 사용자" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "사용자 세팅 오류" @@ -851,6 +1010,7 @@ msgstr "프로필 업데이트 오류" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "리모트 프로필 업데이트 오류" @@ -860,33 +1020,36 @@ msgid "Error with confirmation code." msgstr "확인 코드 오류" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "존재하는 별명" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "자주 묻는 질문" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "아바타 업데이트 실패" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s의 친구들을 위한 피드" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s의 답신 피드" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "%s 태그의 피드" @@ -901,17 +1064,23 @@ msgstr "통지들의 내용 찾기" msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." -msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "실명" @@ -920,23 +1089,33 @@ msgstr "실명" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "실명이 너무 깁니다. (최대 255글자)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "도움말" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "홈" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "홈페이지" @@ -944,21 +1123,27 @@ msgstr "홈페이지" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "이메일로 통보를 포스트 하길 원합니다." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "메신저" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "메신저 주소" @@ -968,76 +1153,87 @@ msgid "IM Settings" msgstr "메신저 설정" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -msgstr "만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하여 입력해 주세요." +msgstr "" +"만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하" +"여 입력해 주세요." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." -msgstr "만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." +msgstr "" +"만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." -msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "받은 이메일" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "받은 이메일 계정 삭제" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "기존 비밀 번호가 틀렸습니다" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "틀린 계정 또는 비밀 번호" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "옳지 않은 아바타 URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "옳지 않은 이메일 주소 : %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "옳지 않은 홈페이지 '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "옳지 않은 라이선스 URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "옳지 않은 통지 내용" @@ -1052,13 +1248,13 @@ msgid "Invalid notice url" msgstr "옳지 않은 통지 url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "옳지 않은 프로필 URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "옳지 않은 프로필 URL (나쁜 포멧)" @@ -1076,60 +1272,69 @@ msgstr "옳지 않은 크기" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "초대권을 보냈습니다" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "다음 사람들에게 초대권을 보냈습니다:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "초대" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "새 사용자를 초대" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전을 사용합니다. StatusNet는 " -"[GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 " -"있습니다." +"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" +"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " "add %s to your buddy list in your IM client or on GTalk." msgstr "" -"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 GTalk 친구목록에 반드시 %s " -"주소를 추가하여 주십시오." +"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " +"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "언어" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "언어가 너무 깁니다. (최대 50글자)" @@ -1138,7 +1343,15 @@ msgstr "언어가 너무 깁니다. (최대 50글자)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "위치" @@ -1147,7 +1360,12 @@ msgstr "위치" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "위치가 너무 깁니다. (최대 255글자)" @@ -1156,43 +1374,52 @@ msgstr "위치가 너무 깁니다. (최대 255글자)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "로그인" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%)로 로그인하세요." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 " -"[OpenID](%%action.openidlogin%%)를 사용해 보세요." +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "로그아웃" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "더욱 긴 이름을 요구합니다." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "비밀 번호를 잊으셨나요?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "포스팅을 위한 새 이메일 계정의 생성; 전 이메일 계정은 취소." @@ -1203,16 +1430,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "%%site.name%%에서 어떻게 이메일을 받을지 정하십시오." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "가입한 때" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s의 마이크로블로그" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1222,44 +1451,53 @@ msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "나의 글과 파일의 라이선스는 다음과 같습니다 " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "새로운" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "%s에 포스팅 할 새로운 이메일 주소" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "새로운 이메일 주소가 추가 되었습니다." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "새로운 별명" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "새로운 통지" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "새로운 비밀 번호" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." +msgstr "" +"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1267,7 +1505,13 @@ msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "별명" @@ -1276,7 +1520,12 @@ msgstr "별명" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." @@ -1285,47 +1534,60 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니다." +msgstr "" +"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" +"다." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "별명 사용이 불가 합니다." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "따라가고 싶은 사용자의 별명" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "별명 또는 이메일" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "아니오" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID가 아닙니다." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "허용되지 않는 요청입니다." #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "통신회사가 선택 되지 않았습니다." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "코드가 입력 되지 않았습니다." @@ -1337,11 +1599,15 @@ msgstr "확인 코드가 없습니다." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "내용이 없습니다!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "이메일이 추가 되지 않았습니다." @@ -1350,7 +1616,9 @@ msgid "No id." msgstr "id가 없습니다." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "이메일 주소가 없습니다." @@ -1361,6 +1629,7 @@ msgstr "리모트 사용자의 별명이 없습니다." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "별명이 없습니다." @@ -1368,12 +1637,14 @@ msgstr "별명이 없습니다." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "휴대폰 번호가 없습니다." @@ -1383,7 +1654,8 @@ msgid "No profile URL returned by server." msgstr "서버로부터 제공되는 프로필 URL가 없습니다." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "그 사용자는 등록된 메일주소가 없습니다." @@ -1395,7 +1667,7 @@ msgstr "리퀘스트가 없습니다!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "결과 없음" @@ -1406,12 +1678,16 @@ msgstr "사이즈가 없습니다." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "그 ID로 발견된 상태가 없습니다." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "발견된 ID의 상태가 없습니다." @@ -1421,13 +1697,15 @@ msgid "No such OpenID." msgstr "그러한 OpenID는 없습니다." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "그러한 문서는 없습니다." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "그러한 통지는 없습니다." @@ -1465,12 +1743,22 @@ msgstr "그러한 예약 구독은 없습니다." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "그러한 사용자는 없습니다." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "그러한 이메일 주소나 계정을 가진 사용자는 없습니다." @@ -1484,32 +1772,38 @@ msgid "Not a recovery code." msgstr "복구 코드가 아닙니다." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "가입된 사용자가 아닙니다." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "유효한 Jabber ID가 아닙니다." #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "유효한 OpenID가 아닙니다." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "유효한 이메일 주소가 아닙니다." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "유효한 이메일 주소가 아닙니다." @@ -1517,6 +1811,11 @@ msgstr "유효한 이메일 주소가 아닙니다." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" @@ -1536,7 +1835,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "그림 파일이 아니거나 손상된 파일 입니다." @@ -1547,11 +1847,13 @@ msgstr "인증이 되지 않았습니다." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "예상치 못한 반응 입니다." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "찾지 못함" @@ -1567,11 +1869,15 @@ msgstr "찾지 못함" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "로그인하고 있지 않습니다." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "구독하고 있지 않습니다!" @@ -1588,39 +1894,44 @@ msgid "Notice feed for %s" msgstr "%s의 통지 피드" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "통지에 프로필이 없습니다." #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "통지" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "%s 태그된 통지" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "기존 비밀 번호" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID 계정 셋업" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 자동 로그인" @@ -1628,29 +1939,34 @@ msgstr "OpenID 자동 로그인" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID 로그인" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID 로의 인증이 취소되었습니다." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID 로의 인증에 실패 : %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 장해 : %s" @@ -1666,11 +1982,12 @@ msgid "OpenID settings" msgstr "OpenID 설정" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "초대장에 메시지 첨부하기." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "불완전한 업로드." @@ -1680,34 +1997,46 @@ msgstr "불완전한 업로드." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "비밀 번호" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "비밀 번호가 일치하지 않습니다." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "비밀 번호는 6자 이상이어야 합니다." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "비밀 번호 복구가 요청되었습니다." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "비밀 번호 저장" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "비밀 번호가 일치하지 않습니다." @@ -1727,14 +2056,17 @@ msgid "People search" msgstr "사람 찾기" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "개인적인" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "개인적인 메시지" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." @@ -1743,10 +2075,12 @@ msgid "" "Please check these details to make sure that you want to subscribe to this " "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Cancel\"." -msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." @@ -1755,7 +2089,9 @@ msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "설정" @@ -1764,42 +2100,52 @@ msgstr "설정" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "설정이 저장되었습니다." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "언어 설정" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "개인정보 취급방침" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "프로필" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "프로필 URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "프로필 세팅" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "알 수 없는 프로필" @@ -1808,17 +2154,19 @@ msgid "Public Stream Feed" msgstr "퍼블릭 스트림 피드" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "퍼블릭 타임라인" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "이메일 주소를 위한 MicroID의 생성" @@ -1828,12 +2176,14 @@ msgid "Recent Tags" msgstr "최근 태그" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "복구" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "비밀 번호 복구" @@ -1846,37 +2196,45 @@ msgstr "알 수 없는 취소를 위한 리커버리 코드" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "가입이 허용되지 않습니다." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "회원 가입이 성공적입니다." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "거부" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "자동 로그인" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "리모트 프로필과 일치하는 것이 없습니다." #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "리모트 구독 예약" @@ -1890,6 +2248,9 @@ msgstr "리모트 구독 예약" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "삭제" @@ -1898,41 +2259,50 @@ msgstr "삭제" msgid "Remove OpenID" msgstr "OpenID 삭제" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." -msgstr "마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 OpenID를 추가해 주십시오." +msgstr "" +"마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 " +"OpenID를 추가해 주십시오." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "답신" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s에 답신" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "초기화" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "비밀 번호 초기화" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS 휴대폰 번호" @@ -1941,17 +2311,18 @@ msgstr "SMS 휴대폰 번호" msgid "SMS Settings" msgstr "SMS 세팅" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS 인증" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "위와 같은 비밀 번호" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." @@ -1964,12 +2335,21 @@ msgstr "위와 같은 비밀 번호. 필수 사항." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "저장" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "검색" @@ -1979,63 +2359,78 @@ msgid "Search Stream Feed" msgstr "스트림 피드를 검색" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어도 3글자 이상 필요." +msgstr "" +"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" +"도 3글자 이상 필요." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "통신 회사를 선택 하세요." #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "보내기" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오/" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "새로운 예약 구독의 통지를 이메일로 보내주세요." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk 로 통지를 보내주세요." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." -msgstr "통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있습니다." +msgstr "" +"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" +"습니다." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." +msgstr "" +"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "설정" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "설정 저장" @@ -2055,27 +2450,32 @@ msgid "Something weird happened." msgstr "예측 하지 못한 사태가 발생했습니다." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "죄송합니다. 귀하의 이메일이 아닙니다." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "소스 코드" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "통계" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "저장된 OpenID를 찾을 수 없습니다." @@ -2083,24 +2483,28 @@ msgstr "저장된 OpenID를 찾을 수 없습니다." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "구독" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "구독자" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "구독 허가" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "구독 거부" @@ -2108,28 +2512,35 @@ msgstr "구독 거부" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구독" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "태그" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "문자" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "문자 검색" @@ -2149,6 +2560,7 @@ msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." @@ -2158,63 +2570,73 @@ msgid "That file is too big." msgstr "파일 사이즈가 너무 큽니다." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "그 Jabber ID는 이미 귀하의 것입니다." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "그 이메일 주소는 이미 귀하의 것입니다." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "그 휴대폰 번호는 이미 귀하의 것입니다." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "그 Jabber ID는 귀하의 것이 아닙니다." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "그 이메일 주소는 귀하의 것이 아닙니다." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "옳지 않은 메신저 계정 입니다." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "옳지 않은 인증 번호 입니다." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "너무 깁니다. 통지의 최대 길이는 255글자 입니다." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." @@ -2223,74 +2645,90 @@ msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "주소가 삭제되었습니다." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. " -"귀하의 구독 토큰은 : " +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " "subscription." msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s의 통지를 받고 있는 사람" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s님이 받고 있는 통지의 사람" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "자동 구독 신청이 된 사용자:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." -msgstr "이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세요. OpenID 프로바이더에 전송 됩니다." +msgstr "" +"이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세" +"요. OpenID 프로바이더에 전송 됩니다." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성하거나 기존의 계정으로 연결 하실 수 있습니다." +"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성" +"하거나 기존의 계정으로 연결 하실 수 있습니다." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "이 메서드는 등록 또는 삭제를 요구합니다." @@ -2299,47 +2737,63 @@ msgstr "이 메서드는 등록 또는 삭제를 요구합니다." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "이 메서드는 등록을 요구합니다." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "타임존" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "타임존이 설정 되지 않았습니다." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action.register%%)하십시오. 이미 " -"계정이 [호환되는 마이크로블로깅 사이트]((%%doc.openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." +"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action." +"register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc." +"openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" @@ -2351,15 +2805,22 @@ msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "잘못된 폼 제출" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "잘못된 비밀 번호 지정" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "알려지지 않은 행동" @@ -2372,7 +2833,9 @@ msgstr "OMB 프로토콜의 알려지지 않은 버전" msgid "" "Unless otherwise specified, contents of this site are copyright by the " "contributors and available under the " -msgstr "따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다음 라이선스로 이용할 수 있습니다: " +msgstr "" +"따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다" +"음 라이선스로 이용할 수 있습니다: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2388,38 +2851,47 @@ msgstr "구독 해제" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "지원되지 않는 OMB 버전" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "지원하지 않는 그림 파일 형식입니다." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "올리기" @@ -2430,20 +2902,24 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. 사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 " -"라이선스하에 있게됩니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." +"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. " +"사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩" +"니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" msgstr "새 프로필 사진 올리기" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." @@ -2467,11 +2943,16 @@ msgstr "살펴 보고 있는 사용자가 없습니다." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "이용자 닉네임" @@ -2480,29 +2961,33 @@ msgid "User not found." msgstr "이용자가 없습니다." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "뭐하세요? %?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "%S 잘못된 그림 파일 타입입니다. " #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "%S 잘못된 그림 파일 사이즈입니다." @@ -2510,7 +2995,9 @@ msgstr "%S 잘못된 그림 파일 사이즈입니다." #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "네, 맞습니다." @@ -2523,7 +3010,8 @@ msgstr "당신은 이미 오픈ID를 가지고 있습니다." msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2531,11 +3019,12 @@ msgid "You are already logged in!" msgstr "당신은 이미 로그인되어 있습니다." #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "당신은 지정한 회원과 친구가 아닙니다." @@ -2551,46 +3040,56 @@ msgstr "계정을 새로 만들면 새로운 게시글을 작성할 수 있습 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." +msgstr "" +"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니다." +msgstr "" +"당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니" +"다." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아래 당신의 주소와 환경설정을 조정하세요." +"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" +"래 당신의 주소와 환경설정을 조정하세요." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." -msgstr "사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이트 할 수 있습니다. " +msgstr "" +"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" +"트 할 수 있습니다. " #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "당신은 로컬 구독을 사용할 수 있습니다." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "당신은 프로필을 우리에게 전송하지 않았다." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2602,89 +3101,104 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" -"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시오.이메일 사용법은 %3$s 페이지를 " -"보십시오.안녕히,%4$s" +"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" +"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다." #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" +"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" +"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "당신의 오픈ID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 " -"오픈ID를 관리하세요." +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "몇 초 전" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "하루 전" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1분 전" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1달 전" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1년 전" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1시간 전" @@ -2706,12 +3220,14 @@ msgid "reply" msgstr "답장" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "위 비밀번호와 동일하게" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "지원하지 않는 종류의 파일입니다" @@ -2732,6 +3248,26 @@ msgstr "<< 뒤에" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." @@ -2740,6 +3276,7 @@ msgid "This notice is not a favorite!" msgstr "이 메시지는 favorite이 아닙니다." #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "favorite을 삭제할 수 없습니다." @@ -2747,22 +3284,28 @@ msgstr "favorite을 삭제할 수 없습니다." msgid "Favor" msgstr "좋아합니다" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을때, 이메일을 보냅니다." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "이 게시글은 이미 좋아하는 게시글입니다." #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "좋아하는 게시글을 생성할 수 없습니다." @@ -2772,11 +3315,13 @@ msgstr "좋아하는 게시글 취소" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s 좋아하는 게시글" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "%s의 좋아하는 게시글의 피드" @@ -2818,33 +3363,45 @@ msgid "Login with your username and password. " msgstr "당신의 계정과 비밀번호로 로그인하세요." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "수신자를 지정하지 않았습니다." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" +msgstr "" +"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "그러한 사용자가 없습니다." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "새로운 메시지입니다." @@ -2855,7 +3412,8 @@ msgstr "프로필매칭 없이 바로 글을 씁니다." #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." +msgstr "" +"[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -2898,6 +3456,11 @@ msgstr "당신은 여기에 당신의 개인적인 프로필을 업데이트 할 #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "프로필 매칭이 없는 사용자" @@ -2926,6 +3489,8 @@ msgid "New password successfully saved. " msgstr "새 비밀번호를 성공적으로 저장했습니다." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "비밀번호는 6자리 이상이어야 합니다." @@ -2934,7 +3499,9 @@ msgstr "비밀번호는 6자리 이상이어야 합니다." msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " "want to..." -msgstr "축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하실 수 있습니다..." +msgstr "" +"축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하" +"실 수 있습니다..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -2946,12 +3513,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "구독하기 위해 당신은 로그인할 수 있습니다. (%%action,login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "%s의 좋아하는 게시글을 위한 피드" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "좋아하는 게시글을 복구할 수 없습니다." @@ -2959,7 +3529,7 @@ msgstr "좋아하는 게시글을 복구할 수 없습니다." msgid "No such message." msgstr "그러한 메시지가 없습니다." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다." @@ -2983,51 +3553,70 @@ msgid "Mobile carrier for your phone. " msgstr "당신의 폰을 위한 모바일 전송" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "%s에게 직접 메시지" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "%s에게 모든 직접 메시지" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "당신이 보낸 직접 메시지" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s에서 보낸 모든 직접 메시지" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "메시지 내용이 없습니다!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "받는 사용자가 없습니다." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / %s의 좋아하는 글들" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." @@ -3045,17 +3634,22 @@ msgstr "" #: actions/twittersettings.php:27 msgid "" "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "트위터 환경설정" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "트위터 계정" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "현재 유효한 트위터 계정" @@ -3064,6 +3658,7 @@ msgid "Twitter Username" msgstr "트위터 사용자이름" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "공백을 없애주세요." @@ -3072,24 +3667,31 @@ msgid "Twitter Password" msgstr "트위터 비밀번호" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "자동으로 트위터에 게시글을 보냅니다." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "트위터에 로컬 \"@\"답장으로 보냅니다." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "여기에서 내 트위터 친구들을 구독합니다." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." -msgstr "사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, 최대 15자 이내이어야 합니다." +msgstr "" +"사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, " +"최대 15자 이내이어야 합니다." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "트위터 자격을 증명할 수 없습니다." @@ -3100,33 +3702,43 @@ msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습 #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "트위터 환경설정을 저장할 수 없습니다." #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "트위터 환결설정이 저장되었습니다." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "이것은 당신의 트위터 계정이 아닙니다." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "트위터 사용자를 제거할 수 없습니다." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "트위터 계정이 제거되었습니다." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "트위터 환경설정을 저장할 수 없습니다." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "트위터 환경설정이 저장되었습니다." @@ -3145,18 +3757,19 @@ msgid "The subscription has been rejected, but no " msgstr "이 구독이 거절되었습니다." #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "실행결과" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "실행 완료" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "실행 실패" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." @@ -3166,89 +3779,111 @@ msgid "Subscriptions: %1$s\n" msgstr "구독: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "이용자의 지속적인 게시글이 없습니다." -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "전체이름: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "위치: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "자기소개: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "%s에게 보낸 직접 메시지" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "구독하려는 사용자의 이름을 지정하십시오." -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "%s에게 구독되었습니다." -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "%s에서 구독을 해제했습니다." #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "알림끄기." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "알림이 켜졌습니다." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." @@ -3256,11 +3891,11 @@ msgstr "알림을 켤 수 없습니다." msgid "Commands:\n" msgstr "명령: \n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "메시지를 삽입할 수 없습니다." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." @@ -3277,7 +3912,7 @@ msgstr "" "당신은 %1$s에 새 포스팅 주소를 가진다. \n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." @@ -3291,7 +3926,7 @@ msgstr "" "%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n" " \n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." @@ -3300,31 +3935,39 @@ msgid "This form should automatically submit itself. " msgstr "이 양식은 자동적으로 스스로 제출됩니다." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "좋아하는 글들" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s 님의 좋아하는 글들" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "이용자" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "받은 쪽지함" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "당신의 받은 메시지들" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "보낸 쪽지함" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "당신의 보낸 메시지들" @@ -3337,14 +3980,19 @@ msgid "Twitter integration options" msgstr "트위터 통합옵션" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "에게" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "메시지를 분리할 수 없습니다." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s 와 친구들, %d 페이지" @@ -3354,21 +4002,31 @@ msgid "You can upload your personal avatar." msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "아바타 설정" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "원래 설정" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "자르기" @@ -3385,34 +4043,43 @@ msgid "There was a problem with your session token. " msgstr "당신의 세션토큰에 문제가 있습니다." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "당신의 아바타가 될 이미지영역을 지정하세요." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "파일 데이터를 잃어버렸습니다." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "파일을 잃어버렸습니다." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "알 수 없는 종류의 파일입니다" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "프로필을 지정하지 않았습니다." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "해당 ID의 프로필이 없습니다." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "사용자를 차단합니다." @@ -3420,11 +4087,11 @@ msgstr "사용자를 차단합니다." msgid "Are you sure you want to block this user? " msgstr "이 사용자를 차단하고 싶은 게 맞습니까?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." @@ -3442,38 +4109,56 @@ msgstr "당신은 영구적으로 이 게시글을 삭제하려고 합니다." msgid "Add to favorites" msgstr "좋아하는 게시글로 추가하기" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "%s 그룹 편집" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "받은쪽지함은 그룹이 일할 수 있도록 활성화되어야 한다." #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "그룹을 만들기 위해서는 로그인해야 합니다." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "닉네임이 없습니다" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "그러한 그룹이 없습니다." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "다음 양식을 이용해 그룹을 편집하십시오." @@ -3482,14 +4167,15 @@ msgid "Nickname must have only lowercase letters " msgstr "닉네임은 오직 영문소문자이어야 합니다." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "설명이 너무 길어요. (최대 140글자)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "옵션들이 저장되었습니다." @@ -3506,7 +4192,8 @@ msgstr "포스팅을 위해 새 이메일 주소를 만드세요." msgid "Send me email when someone " msgstr "내게 이메일을 보내세요." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "친구들이 내게 이메일이나 쪽지를 보낼 수 있도록 허용합니다." @@ -3518,7 +4205,7 @@ msgstr "해당 이메일 주소는 이미 등록되어있습니다." msgid "A confirmation code was sent to the email address you added. " msgstr "인증코드가 당신이 추가한 이메일주소로 발송되었습니다" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "서버에러입니다. - 사용자 정보를 불러올 수 없습니다." @@ -3532,51 +4219,66 @@ msgstr "만약 당신이 자동 업데이트를 위해 %s 애플리케이션을 msgid "Allow %s to update my Facebook status" msgstr "내 페이스북 상태에 업데이트를 위해 %s를 허용합니다." -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "통과! (넘어갑니다)" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "게시글이 없습니다." #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "페이지수" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "뒷 페이지" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "앞 페이지" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "%s 사용을 위해 친구초대를 해주셔서 대단히 감사합니다." -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "초대장이 무사히 발송되었습니다." -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "당신은 %s에 초대되었습니다." -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "%s 이용을 위해 당신이 친구를 초대하세요." -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "친구들은 이미 %s를 사용중입니다." -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "초대장을 발송합니다." @@ -3618,12 +4320,14 @@ msgstr "만약 당신이 자동업데이트를 위해 %s를 좋아한다면" msgid "Sync preferences" msgstr "싱크 설정" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "좋아하는글 취소" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "인기있는 게시글" @@ -3637,7 +4341,8 @@ msgid "The most popular notices on the site right now." msgstr "사이트에서 지금 가장 인기있는 게시글" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "인기있는 회원" @@ -3651,15 +4356,17 @@ msgstr "인기있는 회원, %d페이지" msgid "A selection of some of the great users on %s" msgstr "%s의 훌륭한 회원의 일부 선택" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "이 회원은 구독으로부터 당신을 차단해왔다." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "ID가 없습니다." #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "그룹 로고" @@ -3667,11 +4374,13 @@ msgstr "그룹 로고" msgid "You can upload a logo image for your group." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "로고를 업데이트했습니다." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "로고 업데이트에 실패했습니다." @@ -3690,7 +4399,8 @@ msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "그룹" @@ -3705,6 +4415,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% 그룹은 당신에게 얘기할 사람을 찾게해줍니다." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "새 그룹을 만듭니다." @@ -3714,7 +4425,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "이름과 위치, 상세설명으로 %%site.name%% 에서 그룹을 찾습니다." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "그룹 찾기" @@ -3736,20 +4447,20 @@ msgstr "Jabber/GTalk(구글토크)를 통해 내게 답장을 보냅니다." msgid "A confirmation code was sent " msgstr "인증코드가 보내졌습니다." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "그룹가입을 위해서는 로그인이 필요합니다." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "당신은 이미 이 그룹의 멤버입니다." -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "그룹 %s에 %s는 가입할 수 없습니다." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s 는 그룹 %s에 가입했습니다." @@ -3758,15 +4469,18 @@ msgstr "%s 는 그룹 %s에 가입했습니다." msgid "Inboxes must be enabled for groups to work." msgstr "받은쪽지함은 그룹이 일하기 위해 수신가능해야 합니다." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "그러한 그룹이 없습니다." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -3774,21 +4488,25 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "You may not leave a group while you are its administrator." msgstr "당신은 관리자일동안 해당 그룹을 떠나지 않는것이 좋습니다." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "멤버십 기록을 발견할 수 없습니다." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s가 그룹%s를 떠났습니다." -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "사이트에 로그인하세요." @@ -3800,15 +4518,17 @@ msgstr "현재 상태가 없습니다." msgid "New group" msgstr "새로운 그룹" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." @@ -3820,18 +4540,22 @@ msgstr "너무 길어요." msgid "Don't send a message to yourself; " msgstr "자신에게 메시지를 전송하지 말아주세요." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "게시글이 등록되었습니다." -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax 에러입니다." #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." +msgstr "" +"이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." #: actions/nudge.php:94 msgid "Nudge sent" @@ -3841,7 +4565,7 @@ msgstr "찔러 보기를 보냈습니다." msgid "Nudge sent!" msgstr "찔러 보기를 보냈습니다!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID 로그인" @@ -3865,11 +4589,13 @@ msgstr "URL 자동 줄이기" msgid "Service" msgstr "서비스" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "사용할 URL 자동 줄이기 서비스" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" @@ -3877,16 +4603,17 @@ msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" msgid "Change your password." msgstr "비밀번호를 변경하세요." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "비밀번호 변경" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "유효한 태그가 아닙니다: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "이용자 셀프 테크 %s - %d 페이지" @@ -3896,11 +4623,12 @@ msgstr "이용자 셀프 테크 %s - %d 페이지" msgid "These are users who have tagged themselves \"%s\" " msgstr "이 사람들은 그들 스스로가 \"%s\" 태그를 추가했습니다." -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "프로필 정보" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." @@ -3910,20 +4638,25 @@ msgid "Automatically subscribe to whoever " msgstr "누구에게나 자동구독" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "공개 타임라인, %d 페이지" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "공개 stream을 불러올 수 없습니다." @@ -3933,8 +4666,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 " -"입니다." +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -3945,11 +4678,13 @@ msgstr "공개 태그 클라우드" msgid "These are most popular recent tags on %s " msgstr "다음은 %에서 가장 인기 있는 최근 태그입니다." -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "태그 클라우드" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." @@ -3998,7 +4733,8 @@ msgstr "(당신은 이메일로 메시지를 받아야 합니다." msgid "That's a local profile! Login to subscribe." msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "%s에 답장, %d 페이지" @@ -4008,50 +4744,71 @@ msgstr "%s에 답장, %d 페이지" msgid "%s favorite notices, page %d" msgstr "%s 좋아하는 게시글, %d 페이지" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 그룹" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s 그룹, %d 페이지" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "그룹 프로필" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "설명" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "그룹 행동" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "회원" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "모든 회원" @@ -4061,14 +4818,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-" -"blogging)의 사용자 그룹입니다. " +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "오직 보내는 사람과 받는 사람" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, %d 페이지" @@ -4078,30 +4835,37 @@ msgid "'s profile" msgstr "'의 프로필" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "이용자 프로필" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "사진" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "사용자 동작" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "이 회원에게 직접 메시지를 보냅니다." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "메시지" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "모든 구독자" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "모든 그룹" @@ -4111,8 +4875,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-" -"blogging) 서비스에 계정을 갖고 있습니다." +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4126,7 +4890,7 @@ msgstr "SMS를 통해 게시글을 내게 보냅니다." msgid "A confirmation code was sent to the phone number you added. " msgstr "추가한 전화 번호로 인증 코드를 보냈습니다." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "휴대전화 사업자" @@ -4184,16 +4948,17 @@ msgstr "게시글 쓰는 사람들" msgid "These are the people whose " msgstr "하는 사람들" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "%s 으로 태그된 게시글, %d 페이지" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "가장 최근에 \"%s\" 으로 태그된 메시지들" @@ -4215,26 +4980,29 @@ msgstr "태그 %s" msgid "Tag user" msgstr "태그 사용자" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" -msgstr "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세요." +msgstr "" +"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" +"요." #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +msgstr "" +"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." @@ -4242,20 +5010,23 @@ msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양 msgid "No such tag." msgstr "그러한 태그가 없습니다." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "마이크로블로그는 %s 으로 태그되었습니다." -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "사용자 차단에 실패했습니다." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "사용자 차단 해제에 실패했습니다." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "찾을 수가 없습니다." @@ -4263,15 +5034,16 @@ msgstr "찾을 수가 없습니다." msgid "Add your Twitter account to automatically send " msgstr "자동으로 보내려면 트위터 계정을 추가하십시오." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "트위터 사용자 이름" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "트위터 비밀번호" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "트위터 친구들" @@ -4284,143 +5056,154 @@ msgstr "Username은 단지 숫자를 가져야 합니다," msgid "Unable to retrieve account information " msgstr "계정정보를 불러올 수 없습니다." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "차단 제거 에러!" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "요청한 프로필id가 없습니다." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "해당 id의 프로필이 없습니다." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "구독취소 되었습니다." -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s 그룹" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s 그룹, %d 페이지" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "아바타를 업로드하세요." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "기타" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "다른 옵션들" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "제목없는 페이지" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "계정" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "IM, SMS, 트위터에 연결하기" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "오픈ID로 로그인하기" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "모든 것" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "라이선스" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "이 사용자 차단하기" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "차단하기" @@ -4433,11 +5216,14 @@ msgstr "이 게시글 좋아하기 취소" msgid "To use the %s Facebook Application you need to login " msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "새로운 계정" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "발행되었습니다." @@ -4457,31 +5243,36 @@ msgstr "태그 필터링하기" msgid "All" msgstr "모든 것" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "태그" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "좁은 리스트에서 태그 선택하기" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Go " -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "설명" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "140글자로 그룹이나 토픽 설명하기" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" @@ -4490,20 +5281,20 @@ msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" msgid "Group" msgstr "그룹" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "관리자" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "%s 그룹 속성 편집" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "로고" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "%s logo 추가 혹은 수정" @@ -4534,11 +5325,11 @@ msgstr "가입" msgid "Leave" msgstr "떠나기" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "사용자 이름과 비밀번호로 로그인" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "새 계정을 위한 회원가입" @@ -4560,17 +5351,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s 는 지금 듣고 있습니다." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "위치: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "홈페이지: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4579,7 +5370,7 @@ msgstr "" "소개: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." @@ -4596,39 +5387,47 @@ msgstr "%1$s (%2$s) 사용자가 요즘에 무엇을 하는지 궁금해 하고, msgid "%1$s just added your notice from %2$s" msgstr "%1$s 사용자가 %2$s의 귀하의 글을 추가했습니다." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "로 부터" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "직접 메시지 보내기" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "게시글 보내기" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "사용 가능한 글자" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "이 게시글에 대한 답장" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "이 게시글 삭제하기" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "삭제" @@ -4649,27 +5448,29 @@ msgstr "이 사용자에게 찔러 보기 메시지 보내기" msgid "Tags in %s's notices" msgstr "%s의 게시글의 태그" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(없습니다)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "공개" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "사용자 그룹" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "최근 태그" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "피쳐링됨" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "인기있는" @@ -4685,31 +5486,33 @@ msgstr "이 사이트에서 그룹 찾기" msgid "Untitled section" msgstr "제목없는 섹션" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "%s 사람들은 구독합니다." -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "%s에 의해 구독되는 사람들" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s 그룹들은 의 멤버입니다." -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "회원이 당신을 차단해왔습니다." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." @@ -4722,10 +5525,11 @@ msgid "Top posters" msgstr "상위 게시글 등록자" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "차단해제" @@ -4733,5 +5537,2054 @@ msgstr "차단해제" msgid "Unsubscribe from this user" msgstr "이 사용자로부터 구독취소합니다." +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s 및 친구들" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "아바타가 업데이트 되었습니다." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "당신의 아바타가 될 이미지영역을 지정하세요." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s의 마이크로블로그" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "직접 메시지 보내기 오류." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "스트림에서 \"%s\" 검색" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "생성" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "그룹 프로필" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'의 프로필" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s의 보낸쪽지함" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "아바타" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "프로필 세팅" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "그러한 사용자가 없습니다." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "프로필이나 텍스트 검색" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "IM, SMS, 트위터에 연결하기" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "찔러 보기" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "검색" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "그러한 문서는 없습니다." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "이 그룹의 회원리스트" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "이 그룹의 회원리스트" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "이용자 프로필" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 와 친구들, %d 페이지" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "이 그룹의 회원리스트" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "사용자 차단 해제에 실패했습니다." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "인증 코드" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "이 통지를 지울 수 없습니다." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "유효하지 않은태그: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "좋아하는 게시글을 생성할 수 없습니다." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "새로운 통지" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "새로운 통지" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "유효한 별명이 아닙니다" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "프로필을 지정하지 않았습니다." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "사용자를 차단합니다." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "그룹" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "사용자를 업데이트 할 수 없습니다." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "트위터 환경설정을 저장할 수 없습니다." + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "싱크설정이 저장되었습니다." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "관리자만 그룹을 편집할 수 있습니다." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "관리자" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "결과 없음" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "메시지" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "프로필을 저장 할 수 없습니다." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "프로필 세팅" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "비밀 번호 복구가 요청되었습니다." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "확인 코드 오류" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "이 회원을 구독합니다." + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 좋아하는 게시글, %d 페이지" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "관리자" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "로컬 사용자 아닙니다." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "%s 태그된 통지" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s 는 지금 듣고 있습니다." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s의 통지 피드" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s의 통지 피드" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "이 게시글은 이미 좋아하는 게시글입니다." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "이 메시지는 favorite이 아닙니다." + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "공개 stream을 불러올 수 없습니다." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "수신자를 지정하지 않았습니다." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "어떠한 상태도 찾을 수 없습니다." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / %2$s에게 답신 업데이트" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "라이선스" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s 구독" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "프로필 세팅" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "통지를 저장하는데 문제가 발생했습니다." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "%2$s에서 %1$s까지 메시지" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "이용자 프로필" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "프로필" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "올리기" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "비밀번호 바꾸기" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "연결" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "검색" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "로그인" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "차단하기" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "사용자를 차단합니다." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s logo 추가 혹은 수정" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "내용이 없습니다!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "이용자" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "검색" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "홈페이지 주소형식이 올바르지 않습니다." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "그러한 태그가 없습니다." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "%s에게 직접 메시지" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "따라가실 수 없습니다 : 사용자가 없습니다." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "당신은 이미 이 그룹의 멤버입니다." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "그룹 %s에 %s는 가입할 수 없습니다." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 그룹" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 그룹들은 의 멤버입니다." + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "그룹 행동" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "지원하지 않는 그림 파일 형식입니다." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "사진" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "살펴 보고 있는 사용자가 없습니다." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "인증이 되지 않았습니다." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB 프로토콜의 알려지지 않은 버전" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "그러한 통지는 없습니다." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "파일을 잃어버렸습니다." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" 에 일치하는 모든 업데이트" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140자 이내에서 자기 소개" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "당신에 대해 소개해주세요." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "자기소개가 너무 깁니다. (최대 140글자)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "리퀘스트 토큰을 취득 할 수 없습니다." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%2$s에서 %1$s까지 메시지" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s 그룹" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "게시글이 등록되었습니다." + +# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s의 통지 피드" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%S 잘못된 그림 파일 타입입니다. " + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "서버에 재접속 할 수 없습니다 : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "라코니카 소프트웨어 라이선스" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "찔러 보기를 보냈습니다." + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "이 게시글에 대해 답장하기" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "통지를 저장하는데 문제가 발생했습니다." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "확인 코드가 없습니다." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "이 사이트 로그인" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "통신 회사를 선택 하세요." + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s의 통지 피드" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "다음에서:" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "favorite을 삭제할 수 없습니다." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "통지 삭제" + #~ msgid "Email address" #~ msgstr "이메일 주소" diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index 5dec309dd9af9fd57ff98d57e7974d2c3f620ffd..cdc1a395bd49360650c50ed85f8fc959976139a7 100644 GIT binary patch delta 17103 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\n" "Language-Team: LANGUAGE \n" @@ -26,14 +26,14 @@ msgstr "" "#-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Пребарувај го потокот за „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -46,17 +46,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -88,6 +90,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи вашите забелешки за %2$s." @@ -110,25 +113,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Јавниот поток на %s" @@ -138,40 +144,55 @@ msgstr "Јавниот поток на %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и пријателите" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -180,7 +201,8 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." @@ -192,30 +214,34 @@ msgstr ". Придонесувачите треба да бидат наведе #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или повеќе знаци" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или повеќе знаци и не ја заборавајте!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -225,6 +251,7 @@ msgstr "" "одобрите %S за да ви испраќа пораки." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -254,7 +281,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -277,16 +331,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "За" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Прифати" @@ -297,6 +358,9 @@ msgstr "Прифати" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Додај" @@ -314,27 +378,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Сите претплати" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Сите новини од %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Сите новини кои се еднакви со бараниот термин „%s“" @@ -344,31 +410,38 @@ msgstr "Сите новини кои се еднакви со бараниот #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Веќе сте најавени." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Веќе сте претплатени!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -376,15 +449,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватарот е ажуриран." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -395,13 +472,14 @@ msgstr "" "пријатели?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -413,6 +491,8 @@ msgstr "Предходни »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Био" @@ -420,16 +500,18 @@ msgstr "Био" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не може да се прочита URL-то на аватарот: '%s'" @@ -437,6 +519,8 @@ msgstr "Не може да се прочита URL-то на аватарот: ' #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Новата лозинка не може да се сними" @@ -444,31 +528,34 @@ msgstr "Новата лозинка не може да се сними" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Откажи" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не е возможно да се инстанцира OpenID објект за потрошувачка." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промени" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -478,11 +565,12 @@ msgid "Change password" msgstr "Промени ја лозинката" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -492,6 +580,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Потврди" @@ -504,12 +595,14 @@ msgstr "Потврди ја адресата" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Потврдата е откажана" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -518,7 +611,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Кодот за потврда не е пронајден." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -538,20 +632,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Поврзи се" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Поврзи се со постоечка сметка" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID формуларот не може да се креира:%s" @@ -559,35 +657,39 @@ msgstr "OpenID формуларот не може да се креира:%s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Не може да се пренасочи кон серверот: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Информациите за аватарот не може да се снимат" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Информациите за новиот профил не може да се снимат" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -607,15 +709,17 @@ msgstr "Белезите за барање не може да се конвер #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не може да се креира потврда за е-пошта." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -628,29 +732,38 @@ msgstr "Не може да се земе белег за барање." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Кодот за потврда не може да се внесе." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Профилот не може да се сними." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -666,42 +779,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Корисникот не може да се освежи/" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Креирај" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Креирај нов корисник со овој прекар." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Креирај нова сметка" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Креирање на нова сметка за OpenID што веќе има корисник." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Моментално потврдена Jabber/GTalk адреса." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -710,23 +829,27 @@ msgid "Currently" msgstr "Моментално" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Одговор од внесот во базата: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." @@ -734,11 +857,13 @@ msgstr "Опишете се себе си и сопствените интере #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Е-пошта" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -748,39 +873,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Адресата веќе постои." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Потврдување на адресата" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Внесете прекар или е-пошта" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Грешка во проверувањето на белегот" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Грешка во поврзувањето на корисникот со OpenID" @@ -791,39 +920,46 @@ msgstr "Грешка во поврзувањето на корисникот." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Грешка во внесувањето на аватарот" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Грешка во внесувањето на новиот профил" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка во внесувањето на оддалечениот профил" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Грешка во снимањето на потвдата за адресата." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Грешка во снимањето на оддалечениот профил" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Грешка во снимањето на профилот." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Грешка во снимањето на корисникот." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Грешка во снимањето на корисникот; неправилен." @@ -832,6 +968,9 @@ msgstr "Грешка во снимањето на корисникот; непр #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Грешка во поставувањето на корисникот." @@ -842,6 +981,7 @@ msgstr "Грешка во освежувањето на профилот" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Грешка во освежувањето на оддалечениот профил" @@ -851,33 +991,36 @@ msgid "Error with confirmation code." msgstr "Грешка со кодот за потврдување." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Постоечки прекар" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧПП" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Товарањето на аватарот не успеа." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Канал со пријатели на %S" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Канал со одговори на %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -892,7 +1035,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -905,6 +1048,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Цело име" @@ -913,23 +1061,33 @@ msgstr "Цело име" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Целото име е предолго (максимум 255 знаци)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помош" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Дома" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Домашна страница" @@ -937,21 +1095,27 @@ msgstr "Домашна страница" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Домашната страница не е правилно URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM адреса" @@ -961,7 +1125,7 @@ msgid "IM Settings" msgstr "Поставки за IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -969,7 +1133,7 @@ msgstr "" "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " "истата да ја поврзете со Вашиот OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -977,7 +1141,7 @@ msgstr "" "Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете " "„Додај“." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -986,25 +1150,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Неточна стара лозинка" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Неточно корисничко име или лозинка" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1013,30 +1183,31 @@ msgstr "" "пошта што е регистрирана со Вашата сметка." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неправилно URL за аватар: '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Невалидна домашна страница: '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неправилно URL за лиценца: '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Неправилна содржина за известување" @@ -1051,13 +1222,13 @@ msgid "Invalid notice url" msgstr "Неправилно url на известување" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неправилно URL на профил: '%s'" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неправилно URL на профил (лош формат)" @@ -1075,44 +1246,52 @@ msgstr "Погрешна големина." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Погрешно име или лозинка." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, верзија " -"%s, достапен пд [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " +"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Ова Jabber ID му припаќа на друг корисник." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1122,12 +1301,14 @@ msgstr "" "Вашата контакт листа во Вашиот IM клиент или GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1136,7 +1317,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Локација" @@ -1145,7 +1334,12 @@ msgstr "Локација" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." @@ -1154,18 +1348,22 @@ msgstr "Локацијата е предолга (максимумот е 255 з #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Пријави се" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Пријавете се со [OpenID](%%doc.openid%%) сметка." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1175,22 +1373,26 @@ msgstr "" "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." "register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Одјави се" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или заборавена лозинка?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1201,16 +1403,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Член од" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог на %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1220,42 +1424,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мојот текст и датотеки се достапни под" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нов прекар" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Ново известување" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Нова лозинка" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новата лозинка успешно е снимена. Сега сте пријавени." @@ -1265,7 +1477,13 @@ msgstr "Новата лозинка успешно е снимена. Сега #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Прекар" @@ -1274,7 +1492,12 @@ msgstr "Прекар" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." @@ -1283,47 +1506,58 @@ msgstr "Тој прекар е во употреба. Одберете друг. #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Тој прекар не е дозволен." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Прекар на корисникот што сакате да го следите." #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Прекар или е-пошта" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Нема JabberID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Нема барање за проверка!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1335,11 +1569,15 @@ msgstr "Нема код за потврда." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Нема содржина!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1348,7 +1586,9 @@ msgid "No id." msgstr "Нема id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1359,6 +1599,7 @@ msgstr "Серверот не достави прекар." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Нема прекар." @@ -1366,12 +1607,14 @@ msgstr "Нема прекар." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1381,7 +1624,8 @@ msgid "No profile URL returned by server." msgstr "Серверот не достави URL за профилот." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Нема регистрирана адреса за е-пошта за тој корисник." @@ -1393,7 +1637,7 @@ msgstr "Не е пронаједено барање." #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Нема резултати" @@ -1404,12 +1648,16 @@ msgstr "Нема големина." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1419,13 +1667,15 @@ msgid "No such OpenID." msgstr "Нема таков OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Нема таков документ." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Нема такво известување." @@ -1463,12 +1713,22 @@ msgstr "Нема таква претплата" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Нема таков корисник." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1482,32 +1742,38 @@ msgid "Not a recovery code." msgstr "Ова не е код за спасување." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неправилен JabberID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неправилен OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." @@ -1515,6 +1781,11 @@ msgstr "Неправилна адреса за е-пошта." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неправилен прекар." @@ -1534,7 +1805,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неправилно URL на профил (нема YADIS документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Не е слика или датотеката е корумпирана." @@ -1545,11 +1817,13 @@ msgstr "Не е одобрено." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Овој одговор не беше очекуван!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1565,11 +1839,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не сте пријавени." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не сте претплатени!" @@ -1586,39 +1864,44 @@ msgid "Notice feed for %s" msgstr "Канал со известувања на %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Известувањето нема профил" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Известувања" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Стара лозинка" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Поставување на сметка за OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоматско испраќање на OpenID" @@ -1626,29 +1909,34 @@ msgstr "Автоматско испраќање на OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Пријавување со OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Проверката на OpenID е откажана." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Проверката на OpenID не успеа: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Неуспех на OpenID: %s" @@ -1664,11 +1952,12 @@ msgid "OpenID settings" msgstr "Поставки за OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Парцијално товарање" @@ -1678,34 +1967,46 @@ msgstr "Парцијално товарање" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Лозинка" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Двете лозинки не се совпаѓаат." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Лозинката мора да биде од најмалку 6 знаци." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Побарано е пронаоѓање на лозинката" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Лозинката е снимена." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Лозинките не се совпаѓаат." @@ -1725,14 +2026,17 @@ msgid "People search" msgstr "Пребарување на луѓе" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Личен" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1746,7 +2050,7 @@ msgstr "" "овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Испрати известување кога мојот статус на Jabber/GTalk ќе се смени." @@ -1755,7 +2059,9 @@ msgstr "Испрати известување кога мојот статус #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Преференции" @@ -1764,42 +2070,52 @@ msgstr "Преференции" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Преференциите се снимени." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Приватност" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблем во снимањето на известувањето." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профил" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL на профилот" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Поставки на профилот" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Непознат профил" @@ -1808,17 +2124,19 @@ msgid "Public Stream Feed" msgstr "Јавен канал" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Јавна историја" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1828,12 +2146,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Пронајди" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Пронаоѓање на лозинка" @@ -1846,37 +2166,45 @@ msgstr "Код за пронаоѓање за непознат корисник. #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Одбиј" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запамети ме" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Оддалечениот профил нема одговарачки профил" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Оддалечена претплата" @@ -1890,6 +2218,9 @@ msgstr "Оддалечена претплата" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Отстрани" @@ -1898,7 +2229,7 @@ msgstr "Отстрани" msgid "Remove OpenID" msgstr "Отстрани го OpenID-то" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1907,34 +2238,41 @@ msgstr "" "пријавите. Ако треба да го отстраните, прво додајте друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Одговори" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Одговори испратени до %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Ресетирај" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Рестетирај ја лозинката" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1943,17 +2281,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Исто како лозинката погоре" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1966,12 +2305,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Сними" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Барај" @@ -1981,7 +2329,7 @@ msgid "Search Stream Feed" msgstr "Барај во каналот" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1990,7 +2338,7 @@ msgstr "" "Барајте известувања на %%site.name%% според нивната содржина. Термините " "одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2000,48 +2348,56 @@ msgstr "" "Термините одделете ги со празни места. Најмала должина е 3 знаци." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Испрати" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми известувања преку Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Поставки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Поставките се снимени." @@ -2061,27 +2417,32 @@ msgid "Something weird happened." msgstr "Нешто чудно се случи." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Изворен код" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Зачуваниот OpenID не е пронајден." @@ -2089,24 +2450,28 @@ msgstr "Зачуваниот OpenID не е пронајден." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Претплати се" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Претплатници" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Претплатата е одобрена" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Претплатата е одбиена" @@ -2114,28 +2479,35 @@ msgstr "Претплатата е одбиена" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Претплати" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системска грешка при товарањето на датотеката." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Текстуално пребарување" @@ -2155,6 +2527,7 @@ msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2164,63 +2537,73 @@ msgid "That file is too big." msgstr "Датотеката е преголема." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Ова е погрешната IM адреса." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресата \"%s\" е потврдена за Вашата сметка." @@ -2229,11 +2612,14 @@ msgstr "Адресата \"%s\" е потврдена за Вашата сме #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресата е отстранета." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2243,7 +2629,8 @@ msgstr "" "местото за да видите како да ја одобрите претплатата. Вашиот белег за " "претплата е:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2253,33 +2640,38 @@ msgstr "" "местото за да видите како целосно да ја одбиете претплатата." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Ова се луѓето што ги следат известувањата на %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Ова се луѓето што ги следат Вашите известувања." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Ова се луѓето чии известувања ги следи %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Ова се луѓето чии известувања ги следите." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Овој код за потврда е премногу стар. Почнете од почеток." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2288,7 +2680,7 @@ msgstr "" "на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2303,6 +2695,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2311,25 +2706,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2342,18 +2749,21 @@ msgstr "" "подолу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL на Вашата домашна страница, блог или профил на друго место." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друго компатибилно место за микроблогирање." @@ -2365,15 +2775,22 @@ msgstr "URL на Вашиот профил на друго компатибил #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Неочекувано испраќање на формулар." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Неочекувано ресетирање на лозинка." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2404,38 +2821,47 @@ msgstr "Откажи ја претплатата" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдржнана верзија на ОМВ" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Товари" @@ -2456,12 +2882,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Се користи само за надградби, објави и пронаоѓање на лозинка." @@ -2485,11 +2914,16 @@ msgstr "Корисникот кој го следите не постои." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Корисникот нема профил." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Прекар на корисникот" @@ -2498,29 +2932,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Што има %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Држава“." #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Погрешен тип на слика за '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Погрешна големина на слика на '%s'" @@ -2528,7 +2966,9 @@ msgstr "Погрешна големина на слика на '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2549,11 +2989,12 @@ msgid "You are already logged in!" msgstr "Веќе сте пријавени!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2571,7 +3012,7 @@ msgstr "Можете да креирате нова сметка за да ис msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2579,6 +3020,7 @@ msgstr "" "Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2587,7 +3029,8 @@ msgstr "" "Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" "doc.im%%). Подолу " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2598,21 +3041,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Може да ја користите локалната претплата." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Не ни го испративте тој профил." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2626,37 +3071,41 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Вашето URL за OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Вашиот прекар на овој сервер или адресата за е-пошта со која се " "регистриравте." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2666,47 +3115,57 @@ msgstr "" "истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" "ја." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "пред %d месеци" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "пред еден ден" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "пред една минута" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "пред еден месец" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "пред една година" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "пред еден час" @@ -2728,12 +3187,14 @@ msgid "reply" msgstr "одговор" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "исто како лозинката погоре" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2755,6 +3216,26 @@ msgstr "« Следни" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2763,6 +3244,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2770,22 +3252,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2795,11 +3283,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2839,33 +3329,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2919,6 +3420,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2947,6 +3453,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2967,12 +3475,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2980,7 +3491,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3004,51 +3515,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3067,14 +3597,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3083,6 +3616,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3091,24 +3625,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3119,33 +3658,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3162,18 +3711,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3183,89 +3733,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3273,11 +3845,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3292,7 +3864,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3304,7 +3876,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3313,31 +3885,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3350,14 +3930,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s и пријателите" @@ -3367,22 +3952,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Поставки" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3399,35 +3994,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Нема такво известување." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Нема таков корисник." @@ -3436,12 +4040,12 @@ msgstr "Нема таков корисник." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Веќе сте пријавени!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3458,40 +4062,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Нема прекар." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Нема такво известување." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3501,16 +4123,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Корисникот не може да се освежи/" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Поставките се снимени." @@ -3528,7 +4151,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3544,7 +4168,7 @@ msgstr "" "Испративме код за потврда на IM адресата што ја додадовте. Мора да го " "одобрите %S за да ви испраќа пораки." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3558,54 +4182,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Нема содржина!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Следни" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Предходни »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Канал со пријатели на %S" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3651,12 +4290,14 @@ msgstr "" msgid "Sync preferences" msgstr "Преференции" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Нема такво известување." @@ -3671,7 +4312,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3685,15 +4327,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3701,12 +4345,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Аватарот е ажуриран." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Товарањето на аватарот не успеа." @@ -3726,7 +4372,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3741,6 +4388,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Креирај нова сметка" @@ -3753,7 +4401,7 @@ msgstr "" "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " "Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Пребарување на луѓе" @@ -3777,21 +4425,21 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Нема код за потврда." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Веќе сте пријавени!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Не може да се пренасочи кон серверот: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3800,16 +4448,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Нема такво известување." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Не ни го испративте тој профил." @@ -3818,21 +4469,25 @@ msgstr "Не ни го испративте тој профил." msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID формуларот не може да се креира:%s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3844,16 +4499,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Информациите за аватарот не може да се снимат" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Не може да се креира претплатата" @@ -3867,12 +4524,15 @@ msgstr "Датотеката е преголема." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Известувања" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3889,7 +4549,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Пријавување со OpenID" @@ -3917,11 +4577,13 @@ msgstr "" msgid "Service" msgstr "Барај" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." @@ -3931,17 +4593,18 @@ msgstr "Локацијата е предолга (максимумот е 255 з msgid "Change your password." msgstr "Промени ја лозинката" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Лозинката е снимена." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Неправилна адреса за е-пошта." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3951,12 +4614,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Непознат профил" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3966,21 +4630,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Невалидна домашна страница: '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Профилот не може да се сними." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Јавна историја" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4001,11 +4670,13 @@ msgstr "Јавен канал" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4063,7 +4734,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Одговори испратени до %s" @@ -4073,53 +4745,74 @@ msgstr "Одговори испратени до %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Нема такво известување." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Известувања" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Канал со известувања на %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Член од" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4134,7 +4827,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4145,32 +4838,39 @@ msgid "'s profile" msgstr "Профил" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Корисникот нема профил." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Претплатници" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4196,7 +4896,7 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Овој код за потврда не е за Вас!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4260,17 +4960,18 @@ msgstr "Ова се луѓето чии известувања ги следи % msgid "These are the people whose " msgstr "Ова се луѓето што ги следат известувањата на %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Нема JabberID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Микроблог на %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4294,7 +4995,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4304,17 +5005,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Информациите за аватарот не може да се снимат" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4323,20 +5024,23 @@ msgstr "" msgid "No such tag." msgstr "Нема такво известување." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Микроблог на %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Не е пронаједено барање." @@ -4345,16 +5049,17 @@ msgstr "Не е пронаједено барање." msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Нова лозинка" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4367,157 +5072,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Не може да се креира потврда за е-пошта." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Грешка во снимањето на корисникот." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Серверот не достави URL за профилот." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Оддалечениот профил нема одговарачки профил" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Откажи ја претплатата" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Проблем во снимањето на известувањето." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Товарањето на аватарот не успеа." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "За" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Креирај нова сметка" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Нема таков OpenID." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Помош" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Ново известување" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Ново известување" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Претплати" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Нема таков корисник." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4530,12 +5244,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Креирај нова сметка" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Јавен" @@ -4557,34 +5274,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL на Вашата домашна страница, блог или профил на друго место." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Претплати" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4594,21 +5316,21 @@ msgstr "Каде се наоѓате, на пр. „Град, Држава“." msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Одјави се" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4641,12 +5363,12 @@ msgstr "Пријави се" msgid "Leave" msgstr "Сними" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Погрешно име или лозинка." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Креирај нова сметка" @@ -4667,24 +5389,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4699,43 +5421,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Ново известување" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 или повеќе знаци" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "во одговор на..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "одговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4756,27 +5486,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Јавен" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Пребарување на луѓе" @@ -4794,32 +5526,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Оддалечена претплата" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Оддалечена претплата" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Корисникот нема профил." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Претплатата е одобрена" @@ -4833,11 +5567,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Нема таков корисник." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4845,6 +5580,2019 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и пријателите" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарот е ажуриран." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог на %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Пребарувај го потокот за „%s“" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " +"име и лозинка пред да ги смените Вашите поставки." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Јавен канал" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Јавен канал" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Јавен канал" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Креирај" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Нема такво известување." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профил" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Поставки на профилот" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "Овој код за потврда не е за Вас!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Нема таков корисник." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не може да се креира потврда за е-пошта." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " +"истата да ја поврзете со Вашиот OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s сега ги следи вашите забелешки на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Искрено ваш,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Барај" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нема таков документ." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Нема таков корисник." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Корисникот нема профил." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и пријателите" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Нема таков корисник." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Локација" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Нема такво известување." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Невалидна домашна страница: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Тој прекар е во употреба. Одберете друг." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Информациите за аватарот не може да се снимат" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ново известување" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Ново известување" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неправилен прекар." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Корисникот нема профил." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не ни го испративте тој профил." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Нема таков корисник." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Корисникот не може да се освежи/" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференциите се снимени." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нема резултати" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Корисникот нема профил." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Профилот не може да се сними." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " +"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" +"ја." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Поставки на профилот" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " +"адресата што ја внесовте во Вашата сметка." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Побарано е пронаоѓање на лозинката" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка со кодот за потврдување." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Претплатата е одобрена" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Нема такво известување." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Нема таков корисник." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Корисникот не може да се освежи/" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Корисникот не може да се освежи/" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s статус на %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Микроблог на %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Сите претплати" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Поставки на профилот" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не ни го испративте тој профил." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблем во снимањето на известувањето." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Корисникот нема профил." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профил" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Товари" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Промени ја лозинката" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Поврзи се" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Барај" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Пријави се" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Нема таков корисник." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Нема таков корисник." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Нема содржина!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Барај" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Домашната страница не е правилно URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нема такво известување." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Веќе сте пријавени!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не ни го испративте тој профил." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID формуларот не може да се креира:%s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдржан фомрат на слики." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Корисникот кој го следите не постои." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не е одобрено." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Белезите за барање не може да се конвертираат во белези за пристап." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната верзија на протоколот OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нема такво известување." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Нема такво известување." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." +"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Сите новини кои се еднакви со бараниот термин „%s“" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилно URL на профил (нема YADIS документ)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не може да се земе белег за барање." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Одговори испратени до %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Канал со известувања на %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Известувања" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како да ја одобрите претплатата. Вашиот белег за " +"претплата е:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како целосно да ја одбиете претплатата." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не може да се прочита URL-то на аватарот: '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Погрешен тип на слика за '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Ново известување" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Одговори испратени до %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблем во снимањето на известувањето." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Нема код за потврда." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Канал со известувања на %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Ново известување" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Креирај нова сметка" @@ -4857,10 +7605,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Грешка во внесувањето на известувањето" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " -#~ "адресата што ја внесовте во Вашата сметка." diff --git a/locale/nb/LC_MESSAGES/statusnet.mo b/locale/nb/LC_MESSAGES/statusnet.mo index ee3bad415f60009189cdddf3a4157d5eb3a351a7..e41d29064a77c20a5c3ed6e5d186249c12339c52 100644 GIT binary patch delta 10421 zcmajk34B!5-Nx}dBy3^d0GG5RtrYXR0^C%g;O za5wUg)y7XIzKHqw308OD9TXOkk7ilcZI+d^c9N)~VDfOw8jsiE0DKZV3V?RvK_9|Y0Hu-s|3N&J0+>BlER@8Iu#q;nH?8f`8Uzvj6plGj0JsEYj@JK{Uo2|q;j&?!v8&rw6rf&Nwx_CTG_#?d$mN8xhRP+p74J|wo2 zP*?3jDs3G!`D3V-{22?e3(e8AC`DDc66q}K8(4uqL|uOxRl)AOO)u(a%r=fg+Gx!h zMgM=BL=y!qsJD=`E=4`ycI=AxqFT5YHK`s#8(&0?<)3jd_Mn-Aa3t#f8Ax5Ma@2is zRD~T>!}pJ-|CxW*&nVCh@1Z8yC#Wv;G0kk2ip)#vyb^B+ zr=of!fNFUXRgpVT4SB4+`~?!s8|!1#iw2LgEdH@d_|c@R$9{M%YV3EI{617qJdJwr z5mXPJ#=iJDYA*E|@AX6(s=NZ#;1!ss^&cRiF~1&dJb-%88>ki@Lx$J-2dbj^rCxb8 zs>Kl;iw@EW*3;MxPa!X`I!y2yP=M;usi^bIaDdi-fP|LSM(lx`uqWP#eeibFh zW1A^|0@bxIAbXMZv9W)d*HdMv^}Y~o3>$AS=l5bS-fulaLJxigHQSG)#`rx{h5DZF z%?TS*$&bb^SYq;%O@2D+`U*_Li&4+5#mg{)YS_D&j-O#tE$BVbvO+i(`{AuP5clE$ z{3)J?zeT;^6sl)ZCwVPQH;zXQT{Wtr%TX0wh3er3W3w?niT+pDZJ=Nb-iEsIIn;|@ zKt1p+)YzXy&52%c+QFE&LQ!kVa!fJ-5M>UxiuZZ$f=$A2#LBpytvmsO#THz3&t< zWJ&7`2|cjmH1C4`s0)UnTAqVNI2E;?n^9f89o6-B826y&z<$)2KViyWM?LR%s2+I_ z)svrLXRZJK)4hVBs2j^r7cN3AlU1nM+lp%0WhQ^U$=`(Pse4e9cOUA7kDw~}7^>?J zoBT=Cb)R5o-fx{&0>41DxbqC}0a>WA9EqB}<4k!Osw=0W9yHHbiF)B;)ZAE!nHWcX zBOKIf+mA!=2)gV46p0K9(r0=#Ek#Yn8q^Iz)C;$udSDwCyA^9f*+tJ+b1{zJIwaRJRdb?i!mF+s7bZeC zi$1`P_&5BHkHlPW?%X`jd*NQZgyN@+8RcGsHzrBw1y`aTe64XWYDiwgPkG=eEFk}< z`QD#e126RS<8;dRpeFC1urqe7^j_Qp)iYVfBGiygHu>Z-66)F@>IIunvwjb1nLUN- zndgjeVt4W%p~m)%$!9L`8d7K+hbuTg30L9GI0jE4qhXC$Xj#*={+me9C~FUDC{AH6 zcCGRz;~3PCEWiY=!f)bBI9B;ZY(n@gW7oyr+_)Mw%fE{qa6f8@4x0Rv*hTCA5Q$!# zcn;O&zeRQ7-%+zVrP|woCSf1)A>(DJ<$43E!n;sg_Vd^mkE1I17gUet)_4t_f?ddO z#tPnVZ6%=_j$k)@AJw&=p=Rxni@f|;)B~%r6|cr-U5CZku*4gh9me}mbE^&W@SyQ+ z)LcnhO8@7O$R;ry%TYHp;RuYOmfH?g3m->Ko)f71tc$%a&Bgv?M`1cn#~wOu%7Z4q z5i=>@g6iSj7t{ah`hDiYC$TsAS5RYj5-Sjv9(jO@0t-N9Bd6>!#x!S5}G`BVH!S!deP$;#urg9oL1+RSK~194XE?iqFVHcF)iTb zhZ`rM?yolaAll@wP(DdwCka*HN2rbASyb2l8ddYxO!-mcNwg{d5H;4lgJy1^Dpqdt z^_WdQV#;qq^~^r(j?ZIKi6bObfj=1kYV2C?ZJmQr%WN3x`aDd<@u<}@5%u6k)Eu}L z^}L-p1Rp^4=r2&uIc9vfp7pPSznFs0Q4i|U;F)WjX=aX>ri8tF!{}>4eJ){gu795<^j~IIB3d` zpelGA)gvFFdZ25_8>$RcengUl*7Iaj&|thAwcNI0SG*nd!d=F_#z%~gVOP!{LhTpN zqc*VPSb+W3dgrI2dZOHzTuMSO3ZS~M1-sx?*b%Qojrlg?PSn`%LEX2{_?Ypq@nzI? z$4vhBs0x0J>iWNXCapeA-iz{3H;guxpvJDutln#U)|4MZ-G2%-6g^tJhV?U! z#}vw!poV&R3;nOeDhhn~2%%#aahSN8s3usxXOCOYruayap1_T_om2Kr(ic(opeY-J zRfJZ<6v}VGYX}{uH2y;={4tq#iT6~>@gy-?365IMuOeDWXJRVB-xF3Z)KP>t;vPc1 zRY1(7EP*rd3^o$C6FP3z59Pb1#=kF_fkgYUm&8ki#@;5{kJm|TF`4)A7wso-lDU5w zew+M1h?T@&iA}`U2_3&8R&ve%xHSP|E-AF0<#@1*q%=_Q1Y z;~wts1e0c-xyLN7|1GHw<~|j!BHke0Bua_D5jwO9X`}l{88xXhTt-|<{FL|&(Tf6pV+wkhd;diK24bnnPf?ftj(COmE|JfP zPw}gSHW3{@$}(^f@gZ?9(SF=V;xm&e;JS2THjzWw3gRlFoP7K7PJ03;6MDZDB)&!D zap6u(BebD(Kj+4q$e(*$Lgosh8`q4&jl?CS58y+@wZ!8@Z{iDL5V4w=Zl1ZEG)L0? zpGfWh^QnxIYAzT_^l;C!x0@T3okzM7#}Z>q`T6)T`Q^9{ONjkMH=>fVpI}cy#~|`= zc}eSH(x&~Eb-pRoK0lumLx>khYhN!n=SETXHt9)3G3l@20CP_KkSHW_Ij3Va)(~mL z6Xd56<4KRl2=M^n_WvhJm}4=F`4UM#m()7 z#-8Rm%GMCq5zRz$2`64Aq2rkQ>-|lqAUcc#1Du7F_HKSv50dz zzC(;4zDF!24icXeI;L^W9oPlGq4xit%xPj61rv!fVkY^oUoC`(S5W@ENnebAC!RL>XN|+T<`C)r_%ro?8<{^4Ddqw(csKsYF-OolU;P*pc$yq)Sa+*RCP@rt{N>!h0~2Sm1L`rZ@HWM*?A-9BdyJ~!I;x);KliN!r#yk4A{AGE4Mf&ZjZ5-v;_Q#VBBsFMiQZDBot||b4zmK zZNY)5DYd!dbK<$B#Dtu9+FXAq(OBOa4sWnGL|bF=!nEA7oOn@M+GvinS&jZkL(n~A z2b=w&uharG!d!~)%o=XJK7@Rwm)I#p6`5dUWv12@V;biI9k_4&01p7 z`cODX{o?k&mlfJAe%_HA(8*9-kG1{OT+Oqi^|n8hCxULf5>Z`2 zkGQ8>T5H3hIy(_+4u(S!Cu7LUQMvKFxLxmG7mbAybQ_hf3&ziVDW^^S+BOauls>lp{(!udgcb~x<-F2 zo?m3m3`Ly}+&E{r z!tHQ_T^9{&OxmXARHhV0XmG-s6^*P5#^P?LlW7eH+zzYbEws)brmDesk+V53yD>lw zW6dGvN}Q+E1?|>&Fvcs+-c%oAHu>FRdp*;@j)dx(BK~FuBmVD~QPqZE;y)g-HcBt= z%j@s#%qw>8&l~J3a-PoHF*H&i4Tq!a-ODH0OL(ta%lc?*B;YI>d0DFZ!+CV%?7^x` zB##HXGuE4FfnYq;5OMx7vayrftbkLSe~a^GzTLxgw7-s)#VJ|qWEbRj$PGBYg5l1z zg6x^IgYmjp$eoLtONnUI4o8{&Bb)tSWs030Ca&WZ-s{ZZTeG98r1OH^Z@4ul5K7oH z+!6B9<{~>DOe9!NamQaUIaxJhu3gVcpu6UNnf7L@H8;q_*V*>D$D*m{QhVf#M6@~o z|2SV=Q)3qwjs5>FDM{fP=hlL(rS-8;FcSD*pZ~9C|I5?=^MVpR`oV&yrq!#D^40~_ zl7?u4IjE%{j>Z$F^ZfDn`e-arsH|P*kJy?femfFeZ?h51bQ>w^z!bSO6-rBYny5q4C$%uL$f@G&SpKlt zCY-%RSM~};)`b$@8|$Khpp!A?(t&n;`{1(memSPjmNCaW$AWcHmZ-CO?94K6+q1n1 zZ7qsL*M$PXn6=2=r3`jWf?3{dyYt1H8_s=WuSs7UtV`I5MrLumwf5|+cJhiBj5_=F zFK1JAuq7M{YR22{H-If!JARhaR9w`vh232zcochx^PS>x<^C9*(ijZ4ST#X6&92@W zPOwulyxQv+J#J_}8)xq%9SQIgTSwnoHMFGGA8UK5c#SX1ttFk*>h9qFu=czSbY}b1 z&vJ^#z3NfW@*b_q@o${ocglRg+)e0Ts?QbSs6SwEN6~V(6S}4SHSHgi`dGBN z{Y&9q)4s5m2jkXqW+xxd&bGH!oFU^UI-|#@FDvrS#I$#MwGKz!k7+29b@r6D@pC^( z?x>h=lKWt8cduzpH1e6*$cMpMH9ogH=VI;O7U!z*N7KICft(qo1*xjBv$nLpXL0f9 zu_bo#*h!^hM~^+f?ak81ea^J9HJvWfhdt)(EF05yZ&_Oh=k1BPPRXQw&P@x4b!RlA z4feWVB*GQRB}1K~6APUalj8l(J)t?rI%!)n`L&d`ho%<$oV2PjZ6~H}^*LK+3~!6i zc-Gg}cb3oRq?8YEdRBCGE}E6oaZZG9ymP_qp>3J7C#IYit!14hLSbuWuqhU-PXxn! zVw$uR?wXhGgy-cr$L4i%!sWL)Tg!``JIk}$?wpt9BXPHTqG!cG_e6C?sB=|ION8N`e5#qRd{bksO~F`gD9kI@%+7NDI)8Cj zcgARjI@=azIMXl8aw;wy^k3pLUxl-2a;CGpa)C3m@=<5mf%t9*g!=(>c2>=C(klwx%Kx}(iqm~jFXwMnE1dF0%ln?))W3ZHor_L6 zUt2uU`N85rZr9h>v&O=q26nvIp##m%p~YMK%m~wk{@N&Gr9a6Su9w~X$@EU*{!23EoT$%bfL?8&G%d9&KAncoJ~t6^sdk__*>bs dLu`%g(wbk~(DtJx={^lu&-$3(ic@dz=bxy__p|^2 delta 6404 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 diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 5e2d6613ca..3242960116 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-26 22:45+0000\n" "Last-Translator: Eivind Uggedal \n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: NORWAY\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Søkestrøm for «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr "fra" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Oppdateringer som svarer til %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -103,6 +105,7 @@ msgstr "" "Vennlig hilsen, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s." @@ -125,25 +128,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s offentlig strøm" @@ -153,34 +159,48 @@ msgstr "%s offentlig strøm" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s og venner" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringer fra alle sammen!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -188,16 +208,18 @@ msgstr "" "(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte " "din epostadresse)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** er en mikrobloggingtjeneste av " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " @@ -209,31 +231,35 @@ msgstr ". Bidragsytere burde være etterfulgt av fullt navn eller kallenavn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 eller flere tegn" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 eller flere tegn. Og ikke glem det!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller flere tegn. Påkrevd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -243,6 +269,7 @@ msgstr "" "godkjenne %s for å sende meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metode ikke funnet!" @@ -299,16 +353,23 @@ msgstr "API-metode ikke funnet!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metode under utvikling." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Godta" @@ -319,6 +380,9 @@ msgstr "Godta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Legg til" @@ -336,27 +400,29 @@ msgstr "Legg til eller fjern OpenID-er" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresser til venner som skal inviteres (én per linje)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle abonnementer" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle oppdateringer for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle oppdateringer for søket: «%s»" @@ -366,47 +432,59 @@ msgstr "Alle oppdateringer for søket: «%s»" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Allerede innlogget." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Allerede abonnert!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Er du sikker på at du vil slette denne notisen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser abonnementet" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" +msgstr "" +"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Brukerbilde" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Brukerbildet har blitt oppdatert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -416,6 +494,7 @@ msgstr "" "instruksjoner (la du %s til vennelisten din?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -424,7 +503,7 @@ msgstr "" "melding med videre veiledning." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Venter på bekreftelse for dette telefonnummeret." @@ -436,6 +515,8 @@ msgstr "Tidligere »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Om meg" @@ -443,16 +524,18 @@ msgstr "Om meg" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "«Om meg» er for lang (maks 140 tegn)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan ikke slette notisen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan ikke lese brukerbilde-URL «%s»" @@ -460,6 +543,8 @@ msgstr "Kan ikke lese brukerbilde-URL «%s»" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Klarer ikke å lagre nytt passord." @@ -467,31 +552,34 @@ msgstr "Klarer ikke å lagre nytt passord." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Klarer ikke instansiere OpenID-objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Klarer ikke normalisere Jabber-IDen" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Endre" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Endre eposthåndtering" @@ -501,11 +589,12 @@ msgid "Change password" msgstr "Endre passord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Endre passordet ditt" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" @@ -515,6 +604,9 @@ msgstr "Endre profilinnstillingene dine" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bekreft" @@ -527,12 +619,14 @@ msgstr "Bekreft adresse" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bekreftelse avbrutt." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bekreftelseskode" @@ -541,7 +635,8 @@ msgstr "Bekreftelseskode" msgid "Confirmation code not found." msgstr "Fant ikke bekreftelseskode." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -559,7 +654,8 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du kanskje...\n" +"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " +"kanskje...\n" "\n" "* Gå til [din profil](%s) og sende din første notis.\n" "* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan " @@ -574,20 +670,24 @@ msgstr "" "Thanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Koble til" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Koble til eksisterende konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "" @@ -595,35 +695,39 @@ msgstr "" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Klarte ikke å lagre brukerbilde-informasjonen" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Klarte ikke å lagre den nye profil-informasjonen" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -643,15 +747,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -664,29 +770,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Klarte ikke å lagre profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -702,42 +817,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Klarte ikke å oppdatere bruker." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Opprett" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Lag en ny bruker med dette nicket." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Opprett en ny konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Nåværende bekreftede Jabber/GTak-adresse." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Nåværende bekreftede e-postadresse" @@ -746,23 +867,27 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" @@ -770,11 +895,13 @@ msgstr "Beskriv degselv og dine interesser med 140 tegn" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-post" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-postadresse" @@ -784,39 +911,43 @@ msgid "Email Settings" msgstr "Innstillinger for e-post" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "" @@ -827,39 +958,46 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -868,6 +1006,9 @@ msgstr "" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -878,6 +1019,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -887,33 +1029,36 @@ msgid "Error with confirmation code." msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Eksisterende nick" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "OSS/FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed for %s sine venner" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed for svar til %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed for taggen %s" @@ -928,7 +1073,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -939,6 +1084,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Fullt navn" @@ -947,23 +1097,33 @@ msgstr "Fullt navn" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Beklager, navnet er for langt (max 250 tegn)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjelp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Hjem" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Hjemmesiden" @@ -971,21 +1131,27 @@ msgstr "Hjemmesiden" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-adresse" @@ -995,19 +1161,19 @@ msgid "IM Settings" msgstr "Innstillinger for IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1016,25 +1182,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "innkommende e-post" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Feil gammelt passord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1043,30 +1215,31 @@ msgstr "" "til din registrerte e-postadresse." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ugyldig avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ugyldig hjemmeside '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1081,13 +1254,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ugyldig profil-URL '%s'" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1105,28 +1278,35 @@ msgstr "Ugyldig størrelse" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1135,11 +1315,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1147,12 +1328,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1161,7 +1344,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "" @@ -1170,7 +1361,12 @@ msgstr "" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "" @@ -1179,18 +1375,22 @@ msgstr "" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logg inn" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logg inn med en [OpenID](%%doc.openid%%)-konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1198,22 +1398,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logg ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre navn, helst ditt \"ekte\" navn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mistet eller glemt passordet?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1224,16 +1428,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem siden" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1243,42 +1449,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt nick" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt passord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1288,7 +1502,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nick" @@ -1297,7 +1517,12 @@ msgstr "Nick" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." @@ -1306,47 +1531,58 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Dette nicket er ikke tillatt" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nick eller e-postadresse" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ingen Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1358,11 +1594,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen e-postadresse." @@ -1371,7 +1611,9 @@ msgid "No id." msgstr "Ingen id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1382,6 +1624,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1389,12 +1632,14 @@ msgstr "" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1404,7 +1649,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1416,7 +1662,7 @@ msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "" @@ -1427,12 +1673,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1442,13 +1692,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1486,12 +1738,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1505,32 +1767,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ugyldig Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ugyldig OpenID" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ugyldig e-postadresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -1538,6 +1806,11 @@ msgstr "Ugyldig e-postadresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ugyldig nick." @@ -1557,7 +1830,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1568,11 +1842,13 @@ msgstr "Ikke autorisert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1588,11 +1864,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Ikke logget inn." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1609,39 +1889,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gammelt passord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1649,18 +1934,21 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 #, fuzzy msgid "OpenID authentication cancelled." msgstr "OpenID-autentifisering avbrutt." @@ -1668,11 +1956,13 @@ msgstr "OpenID-autentifisering avbrutt." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1688,11 +1978,12 @@ msgid "OpenID settings" msgstr "Innstillinger for OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1702,34 +1993,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passordet må bestå av 6 eller flere tegn." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Passordet ble lagret" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1749,14 +2052,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1768,7 +2074,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1777,7 +2083,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1786,42 +2094,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1830,17 +2148,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiser en MicroID for min e-postadresse." @@ -1850,12 +2170,14 @@ msgid "Recent Tags" msgstr "Nyeste Tagger" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Gjenopprett" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1868,37 +2190,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Husk meg" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1912,6 +2242,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Fjern" @@ -1920,41 +2253,48 @@ msgstr "Fjern" msgid "Remove OpenID" msgstr "Fjern OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svar til %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Nullstill" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Telefonnummer for SMS" @@ -1963,17 +2303,18 @@ msgstr "Telefonnummer for SMS" msgid "SMS Settings" msgstr "Innstillinger for SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1986,12 +2327,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Søk" @@ -2001,14 +2351,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2016,48 +2366,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2077,27 +2435,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kilde" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistikk" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2105,24 +2468,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2130,28 +2497,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tagger" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekst-søk" @@ -2171,6 +2545,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2180,63 +2555,73 @@ msgid "That file is too big." msgstr "Den filen er for stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det er allerede din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det er allerede din e-postadresse." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det er allerede din ditt telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det er ikke din e-postadresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det er ikke ditt telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det er feil IM-adresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2245,18 +2630,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2264,40 +2653,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2309,6 +2703,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2317,25 +2714,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidssone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2344,18 +2753,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2367,15 +2779,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2404,38 +2823,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Last opp" @@ -2452,12 +2880,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2481,11 +2912,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2494,29 +2930,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2524,7 +2964,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2545,11 +2987,12 @@ msgid "You are already logged in!" msgstr "Du er allerede logget inn!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2567,20 +3010,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2589,21 +3034,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2617,82 +3064,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "omtrent én dag siden" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "omtrent én måned siden" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "omtrent ett år siden" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "omtrent én time siden" @@ -2714,12 +3175,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2740,6 +3203,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2748,6 +3231,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2755,22 +3239,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2780,11 +3270,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2824,33 +3316,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2904,6 +3407,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2932,6 +3440,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2952,12 +3462,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2965,7 +3478,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2989,51 +3502,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3052,14 +3584,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3068,6 +3603,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3076,24 +3612,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3104,33 +3645,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3147,18 +3698,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3168,89 +3720,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3258,11 +3832,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3277,7 +3851,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3289,7 +3863,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3298,31 +3872,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3335,14 +3917,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s og venner" @@ -3352,22 +3939,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Innstillinger for IM" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3384,35 +3981,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Klarte ikke å lagre profil." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3420,12 +4026,12 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Du er allerede logget inn!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3442,40 +4048,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Nytt nick" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Klarte ikke å lagre profil." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3484,16 +4108,17 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bioen er for lang (max 140 tegn)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Klarte ikke å oppdatere bruker." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3510,7 +4135,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3522,7 +4148,7 @@ msgstr "" msgid "A confirmation code was sent to the email address you added. " msgstr "" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3536,52 +4162,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed for %s sine venner" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3625,12 +4266,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3644,7 +4287,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3658,15 +4302,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3674,12 +4320,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avataren har blitt oppdatert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3698,7 +4346,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3713,6 +4362,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Opprett en ny konto" @@ -3723,7 +4373,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Tekst-søk" @@ -3746,21 +4396,21 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Bekreftelseskode" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du er allerede logget inn!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3769,16 +4419,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Klarte ikke å lagre profil." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3786,21 +4439,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Klarte ikke å oppdatere bruker." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3812,16 +4469,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke å lagre avatar-informasjonen" @@ -3835,11 +4494,14 @@ msgstr "Den filen er for stor." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3856,7 +4518,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID" @@ -3884,11 +4546,13 @@ msgstr "" msgid "Service" msgstr "Søk" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Bioen er for lang (max 140 tegn)" @@ -3898,17 +4562,18 @@ msgstr "Bioen er for lang (max 140 tegn)" msgid "Change your password." msgstr "Endre passord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Passordet ble lagret" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ugyldig e-postadresse" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3918,11 +4583,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3933,21 +4599,26 @@ msgid "Automatically subscribe to whoever " msgstr "Abonner " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ugyldig hjemmeside '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Klarte ikke å lagre profil." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3967,11 +4638,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4022,7 +4695,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Svar til %s" @@ -4032,52 +4706,73 @@ msgstr "Svar til %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Klarte ikke å lagre profil." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Medlem siden" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4092,7 +4787,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4103,32 +4798,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Klarte ikke å lagre profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Alle abonnementer" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4152,7 +4854,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "Venter på bekreftelse på dette telefonnummeret" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4212,17 +4914,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Ingen Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mikroblogg av %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4246,7 +4949,7 @@ msgstr "Tagger" msgid "Tag user" msgstr "Tagger" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4256,17 +4959,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4274,20 +4977,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogg av %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Ingen id." @@ -4296,16 +5002,17 @@ msgstr "Ingen id." msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nytt passord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4318,146 +5025,155 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Om" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4470,12 +5186,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Opprett en ny konto" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Offentlig" @@ -4497,35 +5216,40 @@ msgstr "Feed for taggen %s" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Tagger" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Alle abonnementer" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4534,21 +5258,21 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logg ut" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4580,12 +5304,12 @@ msgstr "Logg inn" msgid "Leave" msgstr "Lagre" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ugyldig brukernavn eller passord" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Opprett en ny konto" @@ -4606,24 +5330,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hjemmesiden: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4638,42 +5362,50 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 eller flere tegn" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "svar" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "slett" @@ -4695,29 +5427,31 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 #, fuzzy msgid "Public" msgstr "Offentlig" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Nyeste Tagger" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4733,31 +5467,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Svar til %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -4770,10 +5506,11 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4781,6 +5518,1968 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s og venner" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Brukerbildet har blitt oppdatert." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Søkestrøm for «%s»" + +#: actions/openidlogin.php:66 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "%s offentlig strøm" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Opprett" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Klarte ikke å lagre profil." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed for taggen %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukerbilde" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Endre profilinnstillingene dine" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " +"din for koden, og hvordan du skal bruke den." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Klarte ikke å lagre profil." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s lytter nå til dine notiser på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Vennlig hilsen,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Søk" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Klarte ikke å lagre profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s og venner" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekreftelseskode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikke slette notisen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig hjemmeside '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Det nicket er allerede i bruk. Prøv et annet." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt nick" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt nick" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ugyldig nick." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Du er allerede logget inn!" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Klarte ikke å lagre profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " +"til din registrerte e-postadresse." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Passordet ble lagret" + +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s og venner" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ugyldig OpenID" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Tagger" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s lytter nå til dine notiser på %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed for taggen %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Det er allerede din e-postadresse." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringer som svarer til %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblogg av %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alle abonnementer" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er allerede logget inn!" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Klarte ikke å lagre profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Last opp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endre passordet ditt" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Koble til" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Klarte ikke å lagre profil." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allerede logget inn!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er allerede logget inn!" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ikke autorisert." + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Klarte ikke å lagre profil." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Klarte ikke å lagre profil." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer for søket: «%s»" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 tegn)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Svar til %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Svar til %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Klarte ikke å lagre profil." + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikke lese brukerbilde-URL «%s»" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svar til %s" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Fant ikke bekreftelseskode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "fra" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Opprett en ny konto" diff --git a/locale/nl/LC_MESSAGES/statusnet.mo b/locale/nl/LC_MESSAGES/statusnet.mo index 122a49285d7d3157cba17feccfb48c4a1630075f..c3d6958535dc36ad94bb9bf82fff875255b4e96e 100644 GIT binary patch delta 23460 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 diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 6cc0a52c49..74711cde63 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-11 00:23+0000\n" "Last-Translator: Ben van Es van Conkelenberghe \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Doorzoek de stroom naar \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr " van " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Updates antwoordend op %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s heeft je uitgenodigd voor %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Met vriendelijke groet, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu je berichten %2$s." @@ -127,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status op %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s rss" @@ -155,34 +161,48 @@ msgstr "%s rss" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s en vrienden" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates van iedereen" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -190,7 +210,8 @@ msgstr "" "(U ontvangt een bericht per e-mail met instructies over: hoe te bevestigen " "dat uw e-mailadres.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -199,7 +220,8 @@ msgstr "" "**%%site.name%%** is een microbloggingdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microbloggingdienst. " @@ -213,30 +235,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 of meer tekens" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 of meer tekens, en vergeet het niet!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 of meer tekens. Verplicht" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +272,7 @@ msgstr "" "akkoord gaan dat %s boodschappen aan jou stuurt." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +308,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API functie niet gevonden" @@ -304,17 +358,24 @@ msgstr "API functie niet gevonden" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API functie in bewerking" # This would be appropriate for the footer menu link (actual context isn't clear!) -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Over" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accepteer" @@ -325,6 +386,9 @@ msgstr "Accepteer" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Voeg toe" @@ -342,27 +406,29 @@ msgstr "Toevoegen en verwijderen van je OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adressen van je vrienden om uit te nodigen (1 per regel)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle abonnementen" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle updates voor %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" @@ -372,30 +438,37 @@ msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Al ingelogd." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Al geabonneerd!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Sta abonnement toe" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Voortaan automatisch inloggen; niet voor gemeenschappelijke computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -404,15 +477,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar geactualiseerd." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -423,6 +500,7 @@ msgstr "" "toegevoegd?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -431,7 +509,7 @@ msgstr "" "voor een bericht met verdere instructies. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Afwachtend op bevestiging van dit telefoonnummer" @@ -442,6 +520,8 @@ msgstr "Eerder »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografie" @@ -449,16 +529,18 @@ msgstr "Biografie" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Biografie is te lang (maximaal 140 tekens)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan dit bericht niet verwijderen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan avatar-URL '%s' niet lezen" @@ -466,6 +548,8 @@ msgstr "Kan avatar-URL '%s' niet lezen" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Kan nieuw wachtwoord niet opslaan." @@ -473,31 +557,34 @@ msgstr "Kan nieuw wachtwoord niet opslaan." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annuleer" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Kan OpenID-consumerobject niet instantiëren." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Kan die Jabber-ID niet normaliseren" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Wijzig" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Wijzigen e-mail afhandeling" @@ -507,11 +594,12 @@ msgid "Change password" msgstr "Wijzig wachtwoord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Wijzig jouw wachtwoord" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Wijzig jouw profiel gegevens" @@ -521,6 +609,9 @@ msgstr "Wijzig jouw profiel gegevens" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bevestig" @@ -533,12 +624,14 @@ msgstr "Bevestig adres" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bevestiging geannuleerd." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bevestigingscode" @@ -547,7 +640,8 @@ msgstr "Bevestigingscode" msgid "Confirmation code not found." msgstr "Bevestigingscode niet gevonden." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -582,20 +676,24 @@ msgstr "" "leuke tijd hebt met deze service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Koppel" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Koppel bestaand account" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kan geen OpenID aanmaken van: %s" @@ -603,35 +701,40 @@ msgstr "Kan geen OpenID aanmaken van: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "je kan deze persoon %s niet volgen omdat deze al je vriend is" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" +msgstr "" +"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Kon niet omleiden naar service: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kon avatar informatie niet opslaan" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kon de nieuwe profiel informatie niet opslaan" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kan geen abonnee toewijzen aan je" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kan niet abonneren " @@ -655,15 +758,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kon e-mailbevestiging niet verwijderen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kan geen ene status vinden" @@ -678,29 +783,38 @@ msgstr "Kan geen verzoek om token krijgen" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kon bevestigingscode niet toevoegen" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kon profiel niet opslaan." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "kan de automatische inschrijving niet verwerken" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kan de gebruikersgegevens niet vernieuwen" @@ -716,44 +830,50 @@ msgstr "Kan de gebruikersgegevens niet vernieuwen" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kon gebruiker niet actualiseren." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Aanmaken" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Maak een nieuwe gebruiker aan met deze gebruikersnaam." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Maak een nieuw account aan" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Bezig nieuw account aan te maken voor OpenID waarvoor al een " "gebruikersaccount bestaat." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Huidig bevestigd Jabber/GTalk adres." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Huidig bevestigd SMS-ingevoerd telefoonnummer." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Huidig bevestigd emailadres" @@ -762,23 +882,27 @@ msgid "Currently" msgstr "Op dit moment" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Database fout van de invoer hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Database-fout bij toevoegen antwoord: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Verwijderd bericht" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beschrijf jezelf en je interesses in 140 tekens" @@ -786,11 +910,13 @@ msgstr "Beschrijf jezelf en je interesses in 140 tekens" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Email adres" @@ -800,39 +926,43 @@ msgid "Email Settings" msgstr "Email instellingen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "E-mailadres bestaat al." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bevestiging e-mailadres" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Email adres, zoals \"gebruikersnaam@voorbeeld.net\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Email adressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Voer een gebruikersnaam of e-mailadres in" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Voer de code in die je kreeg via je telefoon" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Fout bij autoriseren token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Fout bij koppelen gebruiker aan OpenID." @@ -843,39 +973,46 @@ msgstr "Fout bij koppelen gebruiker." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fout bij toevoegen avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Fout bij toevoegen nieuw profiel" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fout bij toevoegen profiel op afstand" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fout bij opslaan adresbevestiging." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fout bij opslaan profiel op afstand" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fout bij opslaan van het profiel." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fout bij opslaan van de gebruiker." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fout bij opslaan gebruiker; ongeldig." @@ -884,6 +1021,9 @@ msgstr "Fout bij opslaan gebruiker; ongeldig." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fout bij instellingen gebruiker." @@ -894,6 +1034,7 @@ msgstr "Fout bij actualiseren profiel" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fout bij actualiseren profiel op afstand" @@ -903,33 +1044,36 @@ msgid "Error with confirmation code." msgstr "Fout bij bevestigingscode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Gebruikersnaam bestaat al" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Veelgestelde vragen" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Actualiseren avatar niet gelukt." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed voor vrienden van %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed voor antwoorden aan %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed voor tag %s" @@ -944,7 +1088,7 @@ msgstr "Vind de inhoud van een bericht" msgid "Find people on this site" msgstr "Vind mensen op deze site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -957,6 +1101,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Volledige naam" @@ -965,23 +1114,33 @@ msgstr "Volledige naam" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Volledige naam is te lang (maximaal 255 tekens)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Help" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -989,21 +1148,27 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Homepage is geen geldige URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Ik wil een bericht posten per email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-adres" @@ -1013,7 +1178,7 @@ msgid "IM Settings" msgstr "IM-instellingen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1021,7 +1186,7 @@ msgstr "" "Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " "om het aan je OpenID te koppelen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1029,7 +1194,7 @@ msgstr "" "Als je een OpenID aan je account wilt toevoegen, vul het dan in het veld " "hieronder in en klik op \"Voeg toe\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1040,25 +1205,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Binnenkomende mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Binnenkomende mailadres is verwijderd" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Incorrect oud wachtwoord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Incorrecte gebruikersnaam of wachtwoord." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1067,30 +1238,31 @@ msgstr "" "mailadres dat voor je account is geregistreerd." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ongeldige avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ongeldig Email adres: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ongeldige homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ongeldige licentie-URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ongeldige berichtinhoud" @@ -1105,13 +1277,13 @@ msgid "Invalid notice url" msgstr "Ongeldige bericht-URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ongeldige profiel-URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ongeldige profiel-URL (foutieve syntax)" @@ -1129,44 +1301,52 @@ msgstr "Ongeldige afmeting." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Uitnodiging(en) verzonden" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Uitnodiging(en) verzonden an de volgende mensen:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Uitnodigen" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Nodig nieuwe gebruikers uit" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Het draait op de [StatusNet](http://status.net/) microbloggingsoftware versie " -"%s, beschikbaar onder de [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"Het draait op de [StatusNet](http://status.net/) microbloggingsoftware " +"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID al in gebruik bij een andere gebruiker" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1176,12 +1356,14 @@ msgstr "" "eerst % aan je contactenlijst in je IM-programma of in GTalk toevoegt." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Taal" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Taal is te lang (max 50 karaketers)" @@ -1190,7 +1372,15 @@ msgstr "Taal is te lang (max 50 karaketers)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Locatie" @@ -1199,7 +1389,12 @@ msgstr "Locatie" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Locatie is te lang (maximaal 255 tekens)." @@ -1208,18 +1403,22 @@ msgstr "Locatie is te lang (maximaal 255 tekens)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inloggen" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Log in met een [OpenID](%%doc.openid%%) account." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1230,22 +1429,26 @@ msgstr "" "[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" "(%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Uitloggen" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Langere naam, mogelijk je \"eigen\" naam" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Wachtwoord kwijt of vergeten?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Maak een nieuw emailadres aan voor te posten naar; verwijder de oude." @@ -1257,16 +1460,18 @@ msgstr "Geef hier aan hoe je de notificaties wilt van %%site.name%%." # String should contain a variable token for since 'when' #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Lid sinds" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog van %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1279,42 +1484,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mijn tekst en bestanden zijn beschikbaar onder_" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nieuw" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nieuw email adres om te posten aan %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nieuw binnenkomende emailadres is toegevoegd" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nieuwe gebruikersnaam" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nieuw bericht" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nieuw wachtwoord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nieuw wachtwoord is opgeslagen. Je bent nu ingelogd." @@ -1324,7 +1537,13 @@ msgstr "Nieuw wachtwoord is opgeslagen. Je bent nu ingelogd." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Gebruikersnaam" @@ -1333,7 +1552,12 @@ msgstr "Gebruikersnaam" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Gebruikersnaam al in gebruik. Probeer een andere." @@ -1342,49 +1566,60 @@ msgstr "Gebruikersnaam al in gebruik. Probeer een andere." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Gebruikersnaam moet bestaan uit alleen kleine letters en cijfers en geen " "spaties." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Gebruikersnaam van de gebruiker die je wilt volgen" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Gebruikersnaam of e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nee" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Geen Jabber-ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Geen autorisatie verzoek!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Geen provider geselecteerd" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Geen code ingevuld" @@ -1396,11 +1631,15 @@ msgstr "Geen bevestigingscode." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Geen inhoud!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Geen emailadres" @@ -1409,7 +1648,9 @@ msgid "No id." msgstr "Geen ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Geen binnenkomende emailadres" @@ -1420,6 +1661,7 @@ msgstr "Geen gebruikersnaam verschaft door de server op afstand." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Geen gebruikersnaam." @@ -1427,12 +1669,14 @@ msgstr "Geen gebruikersnaam." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Geen bevestiging in behandeling om te annuleren." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Geen telefoonnummer" @@ -1442,7 +1686,8 @@ msgid "No profile URL returned by server." msgstr "Geen profiel-URL teruggestuurd door de server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Geen geregistreerd e-mailadres voor die gebruiker." @@ -1454,7 +1699,7 @@ msgstr "Geen verzoek gevonden!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Geen resultaten" @@ -1465,12 +1710,16 @@ msgstr "Geen afmeting." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Geen status gevonden met dit ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Geen status gevonden met dat ID" @@ -1480,13 +1729,15 @@ msgid "No such OpenID." msgstr "Die OpenID is niet bekend." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Onbekend document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Onbekend bericht." @@ -1524,12 +1775,22 @@ msgstr "Onbekend abonnement" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Onbekende gebruiker." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Geen gebruiker met dit emailadres of gebruikersnaam" @@ -1543,32 +1804,38 @@ msgid "Not a recovery code." msgstr "Geen geldige herstelcode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Geen geregistreerde gebruiker" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Geen juiste ingevulde gegevens" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Geen geldige Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Geen geldige OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Geen geldig e-mailadres." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -1576,6 +1843,11 @@ msgstr "Geen geldig e-mailadres." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Geen geldige gebruikersnaam." @@ -1595,7 +1867,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Geen geldige profiel-URL (geen YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Geen afbeelding of beschadigd bestand." @@ -1606,11 +1879,13 @@ msgstr "Niet geautoriseerd." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Onverwacht antwoord!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Niet gevonden" @@ -1626,11 +1901,15 @@ msgstr "Niet gevonden" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Niet ingelogd." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Niet geabonneerd!" @@ -1647,39 +1926,44 @@ msgid "Notice feed for %s" msgstr "Berichten-feed voor %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Bericht heeft geen profiel" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Berichten" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Berichten tagged met %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Oud wachtwoord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID-account instellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID automatisch verzenden" @@ -1687,29 +1971,34 @@ msgstr "OpenID automatisch verzenden" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Log in met OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-authenticatie geannuleerd." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-authenticatie niet gelukt: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-fout: %s" @@ -1725,11 +2014,12 @@ msgid "OpenID settings" msgstr "OpenID-instellingen." #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Eventueel een persoonlijke boodschap aan de uitnodiging" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Gedeeltelijke uploaden." @@ -1739,34 +2029,46 @@ msgstr "Gedeeltelijke uploaden." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Wachtwoord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Wachtwoord en bevestiging komen niet overeen." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Wachtwoord moet uit 6 of meer tekens bestaan." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Wachtwoordherstel aangevraagd" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Wachtwoord opgeslagen." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Wachtwoorden komen niet overeen." @@ -1786,14 +2088,17 @@ msgid "People search" msgstr "Mensen zoeken" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoonlijk" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Persoonlijk bericht" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefoonnummer, geen spaties of leestekens, met netnummer" @@ -1809,7 +2114,7 @@ msgstr "" "\"Annuleer\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Plaats een bericht als mijn Jabber/GTalk-status verandert." @@ -1818,7 +2123,9 @@ msgstr "Plaats een bericht als mijn Jabber/GTalk-status verandert." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Voorkeuren" @@ -1827,42 +2134,52 @@ msgstr "Voorkeuren" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Voorkeuren opgeslagen." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Taal voorkeur" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Probleem bij opslaan bericht." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profiel" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profiel-URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profielinstellingen" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profiel onbekend" @@ -1871,17 +2188,19 @@ msgid "Public Stream Feed" msgstr "Openbare feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Openbare tijdlijn" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiceer een MicroID voor mijn Jabber / GTalk adres" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiceer een MicroID voor mijn email adres" @@ -1891,12 +2210,14 @@ msgid "Recent Tags" msgstr "Recent Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Herstellen" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Wachtwoord herstellen" @@ -1909,37 +2230,45 @@ msgstr "Herstelcode voor onbekende gebruiker." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registreer" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registratie niet toegestaan" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registratie gelukt" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Afwijzen" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Onthoud mij" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profiel op afstand zonder overeenkomend profiel" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abonneren op afstand" @@ -1953,6 +2282,9 @@ msgstr "Abonneren op afstand" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Verwijderen" @@ -1961,7 +2293,7 @@ msgstr "Verwijderen" msgid "Remove OpenID" msgstr "Verwijder OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1970,34 +2302,41 @@ msgstr "" "je het moet verwijderen, voeg dan eerst een ander OpenID toe." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Antwoorden" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Antwoorden aan %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Herstellen" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Wachtwoord herstellen" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS telefoonnummer" @@ -2006,17 +2345,18 @@ msgstr "SMS telefoonnummer" msgid "SMS Settings" msgstr "SMS instellingen" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS bevestiging" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Gelijk aan wachtwoord hierboven" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Gelijk aan wachtwoord hierboven. verplicht" @@ -2029,12 +2369,21 @@ msgstr "Gelijk aan wachtwoord hierboven. verplicht" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Zoeken" @@ -2044,7 +2393,7 @@ msgid "Search Stream Feed" msgstr "Doorzoek feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2053,7 +2402,7 @@ msgstr "" "Zoek naar berichten op %%site.name%% op basis van hun inhoud. Scheid " "zoektermen met spaties; ze moeten uit 3 of meer tekens bestaan." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2064,33 +2413,38 @@ msgstr "" "bestaan." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecteer een provider" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Verstuur" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Stuur mij een bericht van nieuwe abonnees via een email" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Stuur mij berichten via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2099,17 +2453,20 @@ msgstr "" "provider kan hebben." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Stuur me antwoorden via Jabber / GTalk van mensen op wie ik niet geabonneerd " "ben." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Instellingen" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Instellingen opgeslagen." @@ -2129,27 +2486,32 @@ msgid "Something weird happened." msgstr "Er is iets eigenaardigs gebeurd." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, inkomende mail is niet toegestaan" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, dit adres is niet een juist mailadres van je." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Bron" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistieken" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Opgeslagen OpenID niet gevonden." @@ -2157,24 +2519,28 @@ msgstr "Opgeslagen OpenID niet gevonden." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abonneren" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnees" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement geautoriseerd" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement afgewezen" @@ -2182,28 +2548,35 @@ msgstr "Abonnement afgewezen" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnementen" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systeemfout bij uploaden bestand." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekst doorzoeken" @@ -2223,6 +2596,7 @@ msgid "That confirmation code is not for you!" msgstr "Die bevestigingscode is niet voor jou!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Dit Emailadres is al geregistreerd door iemand anders" @@ -2232,63 +2606,73 @@ msgid "That file is too big." msgstr "Dat bestand is te groot." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Dat is al je Jabber-ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Dit is al je mailadres." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Dit is al je telefoonnummer" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Dat is niet je Jabber-ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Dit is niet je emailadres" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Dit is niet je telefoonnummer" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Dat is het verkeerde IM-adres." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Dit is het verkeerde bevestigings code/nummer" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Dit telefoonnummer is al in gebruik door iemand" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Dat is te lang. Maximale bericht lengte is 255 tekens." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Het adres \"%s\" is voor je account bevestigd." @@ -2297,11 +2681,14 @@ msgstr "Het adres \"%s\" is voor je account bevestigd." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Het adres was verwijderd." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2311,7 +2698,8 @@ msgstr "" "Loop de instructies van de site na voor details over hoe het abonnement te " "autoriseren. Je abonnement-token is:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2322,35 +2710,40 @@ msgstr "" "af te wijzen." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dit zijn de mensen die %s's berichten volgen." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dit zijn de mensen die jouw berichten volgen." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dit zijn de mensen van wie %s de berichten volgt." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dit zijn de mensen van wie jij de berichten volgt." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Deze mensen zijn al geregistreerd en jij kan je automatisch bij hun " "abonneren: " -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Deze bevestigingscode is te oud. Begin alsjeblieft opnieuw." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2359,7 +2752,7 @@ msgstr "" "de verstuurknop om naar je OpenID-provider te gaan." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2374,6 +2767,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Dit vraagt om te posten of te verwijderen" @@ -2382,25 +2778,37 @@ msgstr "Dit vraagt om te posten of te verwijderen" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Je moet hier dus posten" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tijdzone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Tijdzone niet geselecteerd" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2413,18 +2821,21 @@ msgstr "" "hieronder je profiel-URL in." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Twee gebruikers ID of namen moeten worden gegeven" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL van je homepage, blog, of profiel op een andere site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" @@ -2436,15 +2847,22 @@ msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Formulier onverwacht ingezonden." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Wachtwoord onverwacht teruggesteld." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Onbekende aktie" @@ -2475,38 +2893,47 @@ msgstr "Abonnement opheffen" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Niet ondersteunde OMB-versie" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Niet ondersteund beeldbestandsformaat." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Bijwerkingen door SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Bijwerkingen door de messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Bijwerkingen van %1$s en vrienden op %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Bijwerkingen van %1$s op %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Uploaden" @@ -2527,14 +2954,16 @@ msgid "Upload a new profile image" msgstr "Upload een nieuwe profielfoto" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Gebruik deze pagina om je vrienden en collega´s uit te nodigen voor deze " -"site" +"Gebruik deze pagina om je vrienden en collega´s uit te nodigen voor deze site" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" @@ -2558,11 +2987,16 @@ msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Gebruiker heeft geen profiel." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Gebruikersnaam" @@ -2571,29 +3005,33 @@ msgid "User not found." msgstr "Gebruiker niet gevonden" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Welke tijdzone heb je normaal?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Hoe staat het ermee, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Foutief beeldbestandstype voor '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Verkeerde afmeting van afbeelding bij '%s'" @@ -2601,7 +3039,9 @@ msgstr "Verkeerde afmeting van afbeelding bij '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2624,11 +3064,12 @@ msgid "You are already logged in!" msgstr "Je bent al aangemeld!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Je bent bij deze abonnees al aangemeld:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Je bent niet verbonden met deze gebruiker" @@ -2646,7 +3087,7 @@ msgstr "Je kunt een nieuw account aanmaken om berichten te gaan plaatsen." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Je kunt een SMS ontvangen via mail van %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2655,6 +3096,7 @@ msgstr "" "te klikken." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, fuzzy, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2663,7 +3105,8 @@ msgstr "" "Je kunt berichten verzenden en ontvangen via Jabber/GTalk [instant messages]" "(%%doc.im%%). Configureer je adres en instellingen hieronder." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2674,21 +3117,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Je kunt het lokale abonnement gebruiken!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Je kunt niet registreren als je niet met de licentie akkoord gaat." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Je hebt dat profiel niet ingezonden" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2710,17 +3155,20 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Je mag geen status van een ander wissen" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" "Je moet ingelogd zijn om andere te uit te nodigen om gebruik te maken van %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2729,20 +3177,21 @@ msgstr "" "registreren op de site. Bedankt voor de verspreiding en groei van de " "gemeenschap!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Je OpenID-URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Je gebruikersnaam op deze server, of je geregistreerde e-mailadres." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2751,47 +3200,57 @@ msgstr "" "Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " "gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "ongeveer een jaar geleden" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "ongeveer een uur geleden" @@ -2813,12 +3272,14 @@ msgid "reply" msgstr "antwoord" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "gelijk aan wachtwoord hierboven" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "Dit filetype is niet toegestaan" @@ -2839,6 +3300,26 @@ msgstr "« Later" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." @@ -2847,6 +3328,7 @@ msgid "This notice is not a favorite!" msgstr "Dit bericht is geen favoriet" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kan deze favoriet niet verwijderen" @@ -2854,22 +3336,28 @@ msgstr "Kan deze favoriet niet verwijderen" msgid "Favor" msgstr "Favoriet" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Stuur mij een Email als iemand mij als favoriet aanduid" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Stuur mij een Email als iemand mij een privebericht toezend" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Dit bericht is al een favoriet" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kan geen favoriet aanmaken" @@ -2879,11 +3367,13 @@ msgstr "Niet favoriet" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s favorite berichten" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed voor favorieten berichten van %s" @@ -2925,33 +3415,44 @@ msgid "Login with your username and password. " msgstr "Log in met je gebruikersnaam en paswoord._" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Dit is te lang. max. 140 karakters invoeren." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Geen begunstigde aangeduid" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Je kunt geen bericht naar deze gebruiker zenden" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar jezelf, spreek gewoon zachtjes tegen jezelf." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Geen gebruiker gevonden zoals je zoekt" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nieuw bericht" @@ -2962,7 +3463,8 @@ msgstr "Bericht zonder bekend profiel" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) laat je toe om in meerdere sites in te loggen_" +msgstr "" +"[OpenID](%%doc.openid%%) laat je toe om in meerdere sites in te loggen_" #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3005,6 +3507,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -3033,6 +3540,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -3053,12 +3562,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -3066,7 +3578,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3090,51 +3602,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3153,14 +3684,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3169,6 +3703,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3177,24 +3712,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3205,33 +3745,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3248,18 +3798,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3269,89 +3820,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3359,11 +3932,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3378,7 +3951,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3390,7 +3963,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3399,31 +3972,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3436,14 +4017,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s en vrienden" @@ -3453,22 +4039,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Instellingen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3485,35 +4081,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Onbekend bericht." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Onbekende gebruiker." @@ -3522,12 +4127,12 @@ msgstr "Onbekende gebruiker." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Je bent al aangemeld!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3544,40 +4149,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Geen gebruikersnaam." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Onbekend bericht." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3589,16 +4212,17 @@ msgstr "" "spaties." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Biografie is te lang (maximaal 140 tekens)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kon gebruiker niet actualiseren." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Instellingen opgeslagen." @@ -3616,7 +4240,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3632,7 +4257,7 @@ msgstr "" "Een bevestigingscode is verstuurd naar het opgegeven IM-adres. Je moet ermee " "accoord gaan dat %s boodschappen aan jou stuurt." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3646,54 +4271,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Geen inhoud!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Later" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Eerder »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed voor vrienden van %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3739,12 +4379,14 @@ msgstr "" msgid "Sync preferences" msgstr "Voorkeuren" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Populaire berichten" @@ -3759,7 +4401,8 @@ msgid "The most popular notices on the site right now." msgstr "De meest populaire berichten op de site op dit moment." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Nieuwe gebruikers" @@ -3773,15 +4416,17 @@ msgstr "Nieuwe gebruikers, pagina %d" msgid "A selection of some of the great users on %s" msgstr "Een selectie van de actieve gebruikers op %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Die gebruiker is geblokkeerd voor inschrijving" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Geen ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Groeps logo" @@ -3789,11 +4434,13 @@ msgstr "Groeps logo" msgid "You can upload a logo image for your group." msgstr "Je kan hier een logo voor je groep uploaden" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo geactualiseerd." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Actualiseren van je logo is niet gelukt." @@ -3812,7 +4459,8 @@ msgid "A list of the users in this group." msgstr "Lijst van de leden in deze groep" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groepen" @@ -3827,6 +4475,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Maak een nieuw groep aan" @@ -3839,7 +4488,7 @@ msgstr "" "interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " "bestaan." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Groep zoeken" @@ -3861,20 +4510,20 @@ msgstr "Stuur mij reacties via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Een bevestigingscode is gezonden naar_" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Je moet ingelogd zijn om deze groep bij te wonen" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Je bent al aangemeld bij deze groep!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "% is bij de groep gekomen %s" @@ -3883,15 +4532,18 @@ msgstr "% is bij de groep gekomen %s" msgid "Inboxes must be enabled for groups to work." msgstr "De inbox moet aan staan voor groepen om te kunnen functioneren" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Je moet ingelogd zijn om uit te schrijven uit de groep" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Groep onbekend" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Je bent geen lid van deze groep" @@ -3900,21 +4552,25 @@ msgid "You may not leave a group while you are its administrator." msgstr "" "Als administrator/eigenaar van de groep kan je niet je lidmaatschap opgeven" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Kon geen member vinden" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s heeft de groep verlaten %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Login op de website" @@ -3926,15 +4582,17 @@ msgstr "Geen huidige status" msgid "New group" msgstr "Nieuwe groep" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Gebruik dit formulier voor de nieuwe groep te maken" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Kan de groep niet maken" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Kan de groeps-lidmaatschap niet aanmaken" @@ -3946,11 +4604,14 @@ msgstr "Dit is te lang._" msgid "Don't send a message to yourself; " msgstr "Geen berichten naar jezelf zenden; _" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Berichten gepubliceerd " -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax fout" @@ -3969,7 +4630,7 @@ msgstr "Nudge verzonden" msgid "Nudge sent!" msgstr "Nudge verzonden!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Log in met OpenID" @@ -3994,11 +4655,13 @@ msgstr "URL auto-sorteren" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Automatische verkorting dienst te gebruiken" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL verkorting dienst is te lang (max. 50tekens)." @@ -4006,16 +4669,17 @@ msgstr "URL verkorting dienst is te lang (max. 50tekens)." msgid "Change your password." msgstr "Verander je wachtwoord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Wachtwoord veranderd" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Geen geldige personen-tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Gebruikers eigen-tagged met %s - page %d" @@ -4025,11 +4689,12 @@ msgstr "Gebruikers eigen-tagged met %s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Er zijn gebruikers die hebben hunzelf getagged \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profiel informatie" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4039,20 +4704,25 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ongeldige tag: '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Kon de tags niet opslaan." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Openbare tijdlijn, pagina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4072,11 +4742,13 @@ msgstr "Publieke tag-wolk" msgid "These are most popular recent tags on %s " msgstr "De meest recente en populairste tags %s_" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag-wolk" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Sorry, maar alleen uitgenodigde mensen kunnen registeren" @@ -4127,7 +4799,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Antwoorden aan %s, pagina %d" @@ -4137,51 +4810,72 @@ msgstr "Antwoorden aan %s, pagina %d" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s groep" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s groep, pagina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Groeps profiel" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Bericht" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Groeps aktie" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Berichten-feed voor groep %s" # String should contain a variable token for since 'when' -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Lid" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle leden" @@ -4191,14 +4885,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Alleen de zender en ontvanger_" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pagina %d" @@ -4208,30 +4902,37 @@ msgid "'s profile" msgstr "'s profiel" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Gebruikersprofiel" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Gebruikers akties" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Stuur de gebruiker een direct bericht" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Bericht" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Alle abonnees" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle groepen" @@ -4241,8 +4942,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** heeft een account op %%%%site.name%%%%, een [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" +"en.wikipedia.org/wiki/Micro-blogging) service_" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4258,7 +4959,7 @@ msgstr "Stuur mij berichten via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Die bevestigingscode is niet voor jou!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4322,17 +5023,18 @@ msgstr "Dit zijn de mensen van wie %s de berichten volgt." msgid "These are the people whose " msgstr "Dit zijn de mensen die %s's berichten volgen." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Geen Jabber-ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Microblog van %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4356,7 +5058,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4366,17 +5068,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kon avatarinformatie niet opslaan" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4385,20 +5087,23 @@ msgstr "" msgid "No such tag." msgstr "Onbekend bericht." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog van %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Geen verzoek gevonden!" @@ -4407,16 +5112,17 @@ msgstr "Geen verzoek gevonden!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nieuw wachtwoord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4429,158 +5135,167 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Kon e-mailbevestiging niet verwijderen." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fout bij opslaan van de gebruiker." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Geen profiel-URL teruggestuurd door de server." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Profiel op afstand zonder overeenkomend profiel" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Abonnement opheffen" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Probleem bij opslaan bericht." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Actualiseren avatar niet gelukt." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" # This would be appropriate for the footer menu link (actual context isn't clear!) -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Over ons" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Maak een nieuw account aan" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Die OpenID is niet bekend." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Help" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nieuw bericht" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nieuw bericht" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Abonnementen" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Onbekende gebruiker." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4593,12 +5308,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Maak een nieuw account aan" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Openbaar" @@ -4620,34 +5338,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL van je homepage, blog, of profiel op een andere site" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonnementen" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beschrijf jezelf en je interesses in 140 tekens" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4657,21 +5380,21 @@ msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Uitloggen" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4704,12 +5427,12 @@ msgstr "Inloggen" msgid "Leave" msgstr "Opslaan" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ongeldige gebruikersnaam of wachtwoord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Maak een nieuw account aan" @@ -4730,24 +5453,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s volgt nu je berichten op %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Locatie: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4762,44 +5485,52 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s volgt nu je berichten op %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr " van " -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nieuw bericht" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 of meer tekens" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "in antwoord op" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "antwoord" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4820,27 +5551,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Openbaar" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Personen zoeken" @@ -4858,32 +5591,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Abonneren op afstand" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Abonneren op afstand" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "De gebruiker heeft je geblokkeerd." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Abonnement geautoriseerd" @@ -4896,10 +5631,11 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Deblokkeer" @@ -4907,6 +5643,2056 @@ msgstr "Deblokkeer" msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s en vrienden" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar geactualiseerd." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Je staat op het punt een bericht definitief te verwijderen._ _ Als dit " +"gebeurd kan het nooit meer teruggevonden worden." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Stuur mij een Email als iemand mij een privebericht toezend" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Je kan hier een logo voor je groep uploaden" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog van %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoek naar mensen op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " +"bestaan." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Doorzoek de stroom naar \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Om veiligheidsredenen vragen we je je gebruikersnaam en wachtwoord nogmaals " +"in te voeren alvorens je instellingen te veranderen." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Openbare feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Openbare feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Openbare feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"telefoonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Aanmaken" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Groeps profiel" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'s profiel" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed voor tag %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profielinstellingen" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " +"hoe het te gebruiken." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Geen gebruiker gevonden zoals je zoekt" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Kon e-mailbevestiging niet verwijderen." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " +"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " +"aangegeven je op iemand's berichten te willen abonneren, klik dan op " +"\"Annuleer\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " +"om het aan je OpenID te koppelen." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s volgt nu je berichten op %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Met vriendelijke groet,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Zoeken" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Onbekend document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lijst van de leden in deze groep" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lijst van de leden in deze groep" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Gebruikersprofiel" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s en vrienden" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lijst van de leden in deze groep" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Deblokkeer deze gebruiker." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bevestigingscode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan dit bericht niet verwijderen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ongeldige tag: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Gebruikersnaam al in gebruik. Probeer een andere." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kan geen favoriet aanmaken" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nieuw bericht" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nieuw bericht" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Geen geldige gebruikersnaam." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Geen begunstigde aangeduid" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "De gebruiker heeft je geblokkeerd." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Je bent geen lid van deze groep" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Onbekende gebruiker." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Je moet ingelogd zijn om deze groep bij te wonen" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groepen" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kon gebruiker niet actualiseren." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Voorkeuren opgeslagen." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Geen resultaten" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "De gebruiker heeft je geblokkeerd." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Bericht" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kon profiel niet opslaan." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " +"gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profielinstellingen" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Als je je paswoord vergeten of verloren bent, kan je hier een nieuwe " +"aanvragen naar het mailadres dat bij ons _ _ opgeslagen is in je account." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Wachtwoordherstel aangevraagd" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fout bij bevestigingscode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abonnement geautoriseerd" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favorite berichten" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Onbekende gebruiker." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Berichten tagged met %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" +"en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s volgt nu je berichten op %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Berichten-feed voor %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Berichten-feed voor %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Dit bericht is al een favoriet" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Dit bericht is geen favoriet" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kan deze favoriet niet verwijderen" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Geen begunstigde aangeduid" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kan geen ene status vinden" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates antwoordend op %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alle abonnementen" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profielinstellingen" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Je bent geen lid van deze groep" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Probleem bij opslaan bericht." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Gebruikersprofiel" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profiel" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Uploaden" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Wijzig jouw wachtwoord" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Koppel" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Zoeken" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inloggen" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Onbekende gebruiker." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Onbekende gebruiker." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Geen inhoud!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Zoeken" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Homepage is geen geldige URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Onbekend bericht." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Dit is te lang. max. 140 karakters invoeren." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "" +"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Je bent al aangemeld bij deze groep!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Je bent geen lid van deze groep" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s groep" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Groeps aktie" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Niet ondersteund beeldbestandsformaat." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Niet geautoriseerd." + +# tokens zou vervangen moeten worden dus +# tokens need to be replaced +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Kan niet converteren verzoek om tokens om toegang te krijgen tot de tokens" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Onbekende versie van het OMB-protocol." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Onbekend bericht." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Onbekend bericht." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Log in met je gebruikersnaam en wachtwoord. Heb je nog geen gebruikersnaam? " +"[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" +"(%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beschrijf jezelf en je_" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geen geldige profiel-URL (geen YADIS document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +# Token need to be replaced +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Kan geen verzoek om token krijgen" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Berichten-feed voor groep %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s groep" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Berichten gepubliceerd " + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Berichten-feed voor %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " +"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " +"aangegeven je op iemand's berichten te willen abonneren, klik dan op " +"\"Annuleer\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Loop de instructies van de site na voor details over hoe het abonnement te " +"autoriseren. Je abonnement-token is:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Loop " +"de instructies van de site na voor details over hoe het abonnement volledig " +"af te wijzen." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan avatar-URL '%s' niet lezen" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Foutief beeldbestandstype voor '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Kon niet omleiden naar service: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Vind de inhoud van een bericht" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kan de gebruiker niet aan het bevestigde mailadres bijwerken" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Nudge verzonden" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Antwoorden aan %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Probleem bij opslaan bericht." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Geen bevestigingscode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecteer een provider" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Berichten-feed voor %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s volgt nu je berichten op %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " van " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kan deze favoriet niet verwijderen" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Verwijderd bericht" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Maak een nieuw account aan" diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index 7dbde4019428998e20d4ff8b9b0b1eb5be0e661b..1dda46a4b0d8649b40aa9c66a24163eedc466581 100644 GIT binary patch delta 29135 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 delta 20808 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 z\n" "Language-Team: Norwegian/Nynorsk \n" @@ -15,14 +15,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Søkestraum for «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -35,17 +35,19 @@ msgid " from " msgstr " frå " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Oppdateringar som svarar til %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -98,6 +100,7 @@ msgstr "" "Beste helsing, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s høyrer no på notisane dine på %2$s." @@ -120,25 +123,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s offentlege straum" @@ -148,34 +154,48 @@ msgstr "%s offentlege straum" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s med vener" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidsline" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringar frå alle saman!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -183,7 +203,8 @@ msgstr "" "(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa " "di)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -192,7 +213,8 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " @@ -204,33 +226,37 @@ msgstr ". Bidrag skal verta fylgd av fullt namn eller kallenamn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. " "Kravd." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 eller fleire teikn" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 eller fleire teikn, og ikkje gløym dei." #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller fleire teikn. Kravd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -240,6 +266,7 @@ msgstr "" "for å senda meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -273,7 +300,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Fann ikkje API-metode." @@ -296,16 +350,23 @@ msgstr "Fann ikkje API-metode." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Godta" @@ -316,6 +377,9 @@ msgstr "Godta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Legg til" @@ -333,27 +397,29 @@ msgstr "Legg/fjern OpenID-er" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Venene sine adresser for invitasjon (ei per line)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle tingingar" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle oppdateringar for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle oppdateringer frå søket «%s»" @@ -363,30 +429,37 @@ msgstr "Alle oppdateringer frå søket «%s»" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Allereie logga inn." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Allereie tinga!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sikker på at du vil sletta notisen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser tinging" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -395,15 +468,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Brukarbilete" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Lasta opp brukarbilete." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -413,6 +490,7 @@ msgstr "" "instruksjonar (la du %s til venelista di?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -421,7 +499,7 @@ msgstr "" "med instruksjonar." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Ventar på godkjenning for dette telefonnummeret." @@ -432,6 +510,8 @@ msgstr "Før »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Om meg" @@ -439,16 +519,18 @@ msgstr "Om meg" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "«Om meg» er for lang (maks 140 " #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan ikkje lesa brukarbilete-URL «%s»" @@ -456,6 +538,8 @@ msgstr "Kan ikkje lesa brukarbilete-URL «%s»" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Klarar ikkje lagra nytt passord." @@ -463,31 +547,34 @@ msgstr "Klarar ikkje lagra nytt passord." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Klarte ikkje laga OpenID-objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Klarar ikkje normalisera Jabber-IDen" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Endra" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Endra eposthandtering" @@ -497,11 +584,12 @@ msgid "Change password" msgstr "Endra passord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Endra passordet ditt" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" @@ -511,6 +599,9 @@ msgstr "Endra profilinnstillingane dine" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Godta" @@ -523,12 +614,14 @@ msgstr "Stadfest adresse" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Stadfesting avbrutt." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Stadfestingskode" @@ -537,7 +630,8 @@ msgstr "Stadfestingskode" msgid "Confirmation code not found." msgstr "Fann ikkje stadfestingskode." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -570,20 +664,24 @@ msgstr "" "Takk for at du blei med, og vi håpar du vil lika tenesta!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Kopla til" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Kopla til eksisterande konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kunne ikkje laga OpenID-form: %s" @@ -591,35 +689,39 @@ msgstr "Kunne ikkje laga OpenID-form: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Klarte ikkje å omdirigera til tenaren: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kan ikkje lagra brukarbilete-informasjon" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kan ikkje lagra ny profilinfo" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kan ikkje tinga andre til deg." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kan ikkje tinga." @@ -639,15 +741,17 @@ msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kan ikkje finna einkvan status." @@ -660,29 +764,38 @@ msgstr "Fekk ikkje spørjingsbillett (request token)." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kan ikkje leggja til godkjenningskode." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kan ikkje lagra profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Kan ikkje oppdatera brukar for automatisk tinging." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kan ikkje oppdatera brukarinformajon." @@ -698,42 +811,48 @@ msgstr "Kan ikkje oppdatera brukarinformajon." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kan ikkje oppdatera brukar." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Lag" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Lag ei ny brukar med dette kallenamnet." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Opprett ny konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Oppretter ny konto for OpenID som allereie har ein brukar." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Stadfesta Jabber/Gtalk-adresse." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Godkjent mobiltelefonnummer." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Godkjent epostadresse." @@ -742,23 +861,27 @@ msgid "Currently" msgstr "Noverande" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasefeil, kan ikkje lagra svar: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Slett notis" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Skriv om deg og interessene dine med 140 teikn" @@ -766,11 +889,13 @@ msgstr "Skriv om deg og interessene dine med 140 teikn" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Epost" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Epostadresse" @@ -780,39 +905,43 @@ msgid "Email Settings" msgstr "Epostinnstillingar" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Epostadressa finst allereie." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Stadfesting av epostadresse" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Epostadresse («brukarnamn@example.org»)" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Epostadresser" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Skriv inn kallenamn eller epostadresse." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Skriv inn koden du fekk på telefonen." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Feil ved godkjenning av billett." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Feil ved kopling av brukar til OpenID." @@ -823,39 +952,46 @@ msgstr "Feil ved å kopla til brukar." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Feil med innhenting av brukarbilete." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Feil med å henta inn ny profil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Feil med å henta inn ekstern profil" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Feil med lagring av adressestadfesting." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Feil med lagring av ekstern profil" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Feil ved lagring av profil" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Feil ved lagring av brukar" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Feil ved lagring av brukar; fungerer ikkje." @@ -864,6 +1000,9 @@ msgstr "Feil ved lagring av brukar; fungerer ikkje." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Feil ved å setja brukar." @@ -874,6 +1013,7 @@ msgstr "Feil ved oppdatering av profil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Feil ved oppdatering av ekstern profil" @@ -883,33 +1023,36 @@ msgid "Error with confirmation code." msgstr "Feil med stadfestingskode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Kallenamnet eksisterer" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "OSS" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Feil ved oppdatering av brukarbilete." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Straum for vener av %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Straum for svar til %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Straum for merkelapp %s" @@ -924,7 +1067,7 @@ msgstr "Søk i innhaldet av notisar" msgid "Find people on this site" msgstr "Finn folk på denne sida" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -937,6 +1080,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Fullt namn" @@ -945,23 +1093,33 @@ msgstr "Fullt namn" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjelp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Heim" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Heimeside" @@ -969,21 +1127,27 @@ msgstr "Heimeside" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Eg vil senda notisar med epost." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Ljonmelding" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Ljonmeldingadresse" @@ -993,7 +1157,7 @@ msgid "IM Settings" msgstr "Ljonmeldinginnstillingar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1001,7 +1165,7 @@ msgstr "" "Logg inn med brukarnanm/passord for å kopla brukaren til OpenID-en, viss du " "allereie har ein brukar" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1009,7 +1173,7 @@ msgstr "" "Skriv OpenID-en din i boksen nedanfor og trykk «Legg til» om du ynskjer å " "leggja han til." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1020,25 +1184,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Innkomande epost" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Fjerna innkomande epostadresse." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Det gamle passordet stemmer ikkje" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Feil brukarnamn eller passord" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1047,30 +1217,31 @@ msgstr "" "lagra i kontoen din." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ugyldig brukarbilete-nettadresse «%s»" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ugyldig epostadresse: «%s»" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ugyldig heimeside «%s»" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ugyldig lisens-netadresse «%s»" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ugyldig notisinnhald" @@ -1085,13 +1256,13 @@ msgid "Invalid notice url" msgstr "Ugyldig notis-adresse" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ugyldig profil-nettadresse «%s»" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ugyldig profil-nettadresse (feil format)" @@ -1109,44 +1280,52 @@ msgstr "Ugyldig storleik." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ugyldig brukarnamn eller passord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitasjon(er) sendt" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitasjon(er) sendt til fylgjande folk:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitér" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitér nye brukarar" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon %" -"s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon " +"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1156,12 +1335,14 @@ msgstr "" "leggja %s til venelista di i ljonmeldingsklienten din." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Språk er for langt (maksimalt 50 teikn)." @@ -1170,7 +1351,15 @@ msgstr "Språk er for langt (maksimalt 50 teikn)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Plassering" @@ -1179,7 +1368,12 @@ msgstr "Plassering" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." @@ -1188,18 +1382,22 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logg inn" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logg inn med ein [OpenID](%%doc.openid%%)-konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1210,22 +1408,26 @@ msgstr "" "%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" "%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logg ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mista eller gløymd passord?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." @@ -1236,16 +1438,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Styr korleis du får epost frå %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem sidan" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1257,42 +1461,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Teksten og filene mine er tilgjengeleg under " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Ny epostadresse for å oppdatera %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt kallenamn" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Ny notis" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt passord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Lagra det nye passordet. Du er logga inn." @@ -1302,7 +1514,13 @@ msgstr "Lagra det nye passordet. Du er logga inn." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Kallenamn" @@ -1311,7 +1529,12 @@ msgstr "Kallenamn" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." @@ -1320,47 +1543,58 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Kallenamnet er ikkje gyldig." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Kallenamnet til brukaren du vil fylgja" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Kallenamn eller epostadresse" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nei" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nei Jabber-ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ingen autoriserings-spørjing!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Ingen mobiloperatør vald." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Ingen innskriven kode" @@ -1372,11 +1606,15 @@ msgstr "Ingen stadfestingskode." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Ingen innhald." #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen epostadresse." @@ -1385,7 +1623,9 @@ msgid "No id." msgstr "Ingen ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ingen innkomande epostadresse." @@ -1396,6 +1636,7 @@ msgstr "Ingen kallenamn gjeve av den eksterne tenaren." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Ingen kallenamn." @@ -1403,12 +1644,14 @@ msgstr "Ingen kallenamn." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Ingen telefonnummer." @@ -1418,7 +1661,8 @@ msgid "No profile URL returned by server." msgstr "Ingen profil-nettadresse returnert av tenar." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ingen registrert epostadresse for den brukaren." @@ -1430,7 +1674,7 @@ msgstr "Fann inga spørjing." #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ingen resultat" @@ -1441,12 +1685,16 @@ msgstr "Ingen storleik." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Fann ingen status med den ID-en." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." @@ -1456,13 +1704,15 @@ msgid "No such OpenID." msgstr "Fann ingen slik OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Slikt dokument finst ikkje." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Denne notisen finst ikkje." @@ -1500,12 +1750,22 @@ msgstr "Tinginga finst ikkje." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Brukaren finst ikkje." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Ingen brukar med den epostadressa eller det brukarnamnet." @@ -1519,32 +1779,38 @@ msgid "Not a recovery code." msgstr "Ikkje ei gjenopprettingskode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Ikkje ein registrert brukar." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ikkje ein gyldig Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ikkje ein gyldig OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ikkje ei gyldig epostadresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -1552,6 +1818,11 @@ msgstr "Ikkje ei gyldig epostadresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." @@ -1571,7 +1842,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Korrupt bilete." @@ -1582,11 +1854,13 @@ msgstr "Ikkje autorisert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Venta ikkje dette svaret!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Fann ikkje" @@ -1602,11 +1876,15 @@ msgstr "Fann ikkje" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Ikkje logga inn" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ikkje tinga." @@ -1623,39 +1901,44 @@ msgid "Notice feed for %s" msgstr "Notisstraum for %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notisen har ingen profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Notisar" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Notisar merka med %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gamalt passord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID kontooppsett" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID auto-innsending" @@ -1663,29 +1946,34 @@ msgstr "OpenID auto-innsending" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID-adresse" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-adresse" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-påkopling avbrutt." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-innlogging gjekk dunken: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-feil: %s" @@ -1701,11 +1989,12 @@ msgid "OpenID settings" msgstr "OpenID-innstillingar" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Hallvegs opplasta." @@ -1715,34 +2004,46 @@ msgstr "Hallvegs opplasta." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Passord og stadfesting stemmer ikkje." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passord må vera 6 tekn eller meir." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Passord opphenting etterspurt" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Lagra passord." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passorda var ikkje like." @@ -1762,14 +2063,17 @@ msgid "People search" msgstr "Søk etter folk" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personleg" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personleg melding" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, kun tall, med landskode" @@ -1783,7 +2087,7 @@ msgstr "" "brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." @@ -1792,7 +2096,9 @@ msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Brukarval" @@ -1801,42 +2107,52 @@ msgstr "Brukarval" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Lagra brukarval." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Foretrukke språk" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Personvern" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil-adresse" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profilinnstillingar" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Ukjend profil" @@ -1845,17 +2161,19 @@ msgid "Public Stream Feed" msgstr "Offentleg straum" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Offentleg tidsline" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiser ein MicroID for epost addressa mi." @@ -1865,12 +2183,14 @@ msgid "Recent Tags" msgstr "Nylege merkelappar" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Gjenopprett" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Hent fram passord" @@ -1883,37 +2203,45 @@ msgstr "Hent fram passord for ukjend brukar." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrering ikkje tillatt." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registreringa gikk bra" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Avslå" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Hugs meg" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Ekstern profil med ingen passande profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Eksternt abbonement" @@ -1927,6 +2255,9 @@ msgstr "Eksternt abbonement" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Fjern" @@ -1935,7 +2266,7 @@ msgstr "Fjern" msgid "Remove OpenID" msgstr "Fjern OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1944,34 +2275,41 @@ msgstr "" "du treng å fjerne den, legg til ein annan OpenID først." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svar til %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Avbryt" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Tilbakestill passord" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS telefon nummer" @@ -1980,17 +2318,18 @@ msgstr "SMS telefon nummer" msgid "SMS Settings" msgstr "SMS innstillingar" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS bekreftelse" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Samme passord som over" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." @@ -2003,12 +2342,21 @@ msgstr "Samme som passord over. Påkrevd." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Søk" @@ -2018,7 +2366,7 @@ msgid "Search Stream Feed" msgstr "Søk i straum" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2027,7 +2375,7 @@ msgstr "" "Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; " "dei må være minimum 3 bokstavar eller meir." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2037,33 +2385,38 @@ msgstr "" "nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Velg ein tilbydar" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Send epost til denne addressa for å legge til nye notisar." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Send meg ein notis ved nye tingingar på epost." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg ein notis via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2072,15 +2425,18 @@ msgstr "" "min tilbydar." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Innstillingar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2100,27 +2456,32 @@ msgid "Something weird happened." msgstr "Noko rart skjedde." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Beklager, inngåande epost er ikkje tillatt." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Beklager, det er ikkje di inngåande epost addresse." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kjeldekode" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistikk" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Fann ikkje lagra OpenID" @@ -2128,24 +2489,28 @@ msgstr "Fann ikkje lagra OpenID" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Ting" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tingarar" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Tinging autorisert" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Tinging avvist" @@ -2153,28 +2518,35 @@ msgstr "Tinging avvist" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Merkelappar" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekstsøk" @@ -2194,6 +2566,7 @@ msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Den epost addressa er alt registrert hos ein annan brukar." @@ -2203,63 +2576,73 @@ msgid "That file is too big." msgstr "Fila er for stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det er alt din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det er alt din epost addresse" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det er alt ditt telefonnummer" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det er ikkje din Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det er ikkje din epost addresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det er ikkje ditt telefonnummer" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det er feil lynmeldings addresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Det er feil godkjennings nummer." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Det telefonnummeret er alt registrert hos ein annan brukar." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Det er for langt! Ein notis kan berre innehalde 255 teikn." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Addressa \"%s\" har blitt bekrefta for din konto." @@ -2268,11 +2651,14 @@ msgstr "Addressa \"%s\" har blitt bekrefta for din konto." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Addressa blei fjerna." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2282,7 +2668,8 @@ msgstr "" "Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " "gjennomførast. Ditt tingings teikn er: " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2292,34 +2679,39 @@ msgstr "" "med sida sine instruksjonar for korleis ein skal avvise tinginga." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dette er folk som lyttar til %s's notisar" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dette er folk som lyttar til dine notisar." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dette er folka som %s tingar oppdateringar frå." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dette er dei du lyttar til." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2328,7 +2720,7 @@ msgstr "" "kann du klikka på knappen for å gå til OpenID-tilbydaren din." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2343,6 +2735,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Dette krev anten ein POST eller DELETE." @@ -2351,49 +2746,64 @@ msgstr "Dette krev anten ein POST eller DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Dette krev ein POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidssone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"For å tinga kann du [logga inn](%%action.login%%), eller " -"[registrera](%%action.register%%) ein ny konto. Um du allereie hev ein " -"konto på ei [kompatibel mikrobloggingside](%%doc.openmublog%%), kann du " -"oppgje URLen til profilen under." +"For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%" +"action.register%%) ein ny konto. Um du allereie hev ein konto på ei " +"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til " +"profilen under." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "To brukar IDer eller kallenamn er naudsynte." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." @@ -2405,15 +2815,22 @@ msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Uventa skjemasending." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Uventa passordnullstilling." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Uventa handling." @@ -2444,38 +2861,47 @@ msgstr "Fjern tinging" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Støttar ikkje OMB-versjonen" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Støttar ikkje bileteformatet." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Oppdateringar over SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Oppdateringar over direktemeldingar (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Last opp" @@ -2496,6 +2922,7 @@ msgid "Upload a new profile image" msgstr "Last opp eit nytt profilbilete" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2503,7 +2930,9 @@ msgstr "" "tenesta." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" @@ -2528,11 +2957,16 @@ msgstr "Brukaren du lyttar til eksisterer ikkje." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Brukaren har inga profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Brukaren sitt kallenamn" @@ -2541,29 +2975,33 @@ msgid "User not found." msgstr "Fant ikkje brukaren." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Kva tidssone er du vanlegvis i?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Kva skjer, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Feil biletetype for '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Feil storleik på biletet, på '%s'" @@ -2571,7 +3009,9 @@ msgstr "Feil storleik på biletet, på '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Jau" @@ -2594,11 +3034,12 @@ msgid "You are already logged in!" msgstr "Du er allereie logga inn!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du tingar allereie oppdatering frå desse brukarane:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Du er ikkje ven med brukaren." @@ -2616,7 +3057,7 @@ msgstr "Du kan laga ein ny konto og byrja skriva meldingar." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2625,15 +3066,17 @@ msgstr "" "«Fjern»." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Du kan sende og motta meldingar gjennom Jabber/GTalk " -"[direktemeldingar](%%doc.im%%). Set opp adressa og innstillingar under." +"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" +"doc.im%%). Set opp adressa og innstillingar under." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2644,21 +3087,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan nytta det lokale abonnementet!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Du sende oss ikkje den profilen" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2679,16 +3124,19 @@ msgstr "" "Helsing frå %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Du kan ikkje sletta statusen til ein annan brukar." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Du må verta logga inn for å invitera andre brukarar til %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2696,20 +3144,21 @@ msgstr "" "Du vil få ein notis når dei du har invitert har akseptert invitasjonen og " "har registrert seg på sida. Takk for å bidra til fellesskapet her!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Din OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2718,47 +3167,57 @@ msgstr "" "[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " "brukar kontoen. Velikehold dine OpenID herfra." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "omtrent eitt år sidan" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "omtrent ein time sidan" @@ -2780,12 +3239,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "same passord som ovanfor" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "ikkje støtta fil type" @@ -2806,6 +3267,26 @@ msgstr "« Etter" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." @@ -2814,6 +3295,7 @@ msgid "This notice is not a favorite!" msgstr "Denne notisen er ikkje ein favoritt!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." @@ -2821,22 +3303,29 @@ msgstr "Kunne ikkje slette favoritt." msgid "Favor" msgstr "Tjeneste" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Send meg ein epost når nokon legg til ein av mine notisar som favoritt." +msgstr "" +"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Send meg ein epost når nokon sender meg ei privat melding." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Denne notisen er alt ein favoritt!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." @@ -2846,11 +3335,13 @@ msgstr "Fjern favoritt" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s sine favorittar" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Favoritt straum for %s" @@ -2892,23 +3383,32 @@ msgid "Login with your username and password. " msgstr "Logg inn med ditt brukarnamn og passord." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Det er for langt. Ein notis kan berre være 140 teikn." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Ingen mottakar spesifisert." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kan ikkje sende melding til denne brukaren." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2916,11 +3416,13 @@ msgstr "" "fredleg." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Ingen slik brukar" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Ny melding" @@ -2975,6 +3477,11 @@ msgstr "Du kan oppdatere din personlege profil her" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Kan ikkje finne brukar" @@ -3003,6 +3510,8 @@ msgid "New password successfully saved. " msgstr "Nytt passord lagra." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Passord må være minst 6 teikn." @@ -3025,12 +3534,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "For å tinga må du [logga inn](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Straum for %s sine favorittar" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunne ikkje hente fram favorittane." @@ -3038,7 +3550,7 @@ msgstr "Kunne ikkje hente fram favorittane." msgid "No such message." msgstr "Kan ikkje finne den meldinga." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Kun sendaren og mottakaren kan lese denne meldinga." @@ -3062,51 +3574,70 @@ msgid "Mobile carrier for your phone. " msgstr "Tenestetilbydar for telefonen din." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direkte meldingar til %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle direkte meldingar sendt til %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Alle direkte meldingar du har sendt" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle direkte meldingar sendt fra %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Inga meldingstekst!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Kunne ikkje finne mottakar." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favorittar frå %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s oppdateringar favorisert av %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" @@ -3129,14 +3660,17 @@ msgstr "" "Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter-innstillingar" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitterkonto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Noverande verifisert Twitterkonto" @@ -3145,6 +3679,7 @@ msgid "Twitter Username" msgstr "Brukarnamn på twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Inga mellomrom." @@ -3153,18 +3688,22 @@ msgid "Twitter Password" msgstr "Passord på Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Send mine notisar til Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Send lokale «@»-svar til Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Ting mine twitter-vener her." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3173,6 +3712,7 @@ msgstr "" "Maksimalt 15 teikn." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Twitter-informasjonen fungerer ikkje mot Twitter." @@ -3183,33 +3723,43 @@ msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter. #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Lagra Twitter-innstillingar." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Det er ikkje Twitter-kontoen din." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Kunne ikkje fjerna Twitter-brukar." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Fjerna Twitter-brukar." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Klarte ikkje å lagra Twitter-innstillingar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter-innstillingar lagra." @@ -3226,18 +3776,19 @@ msgid "The subscription has been rejected, but no " msgstr "Abonnementet blei avslådd, men ingen" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultat frå kommandoen" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Kommandoen utførd" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Kommandoen feila" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Orsak, men kommandoen er ikkje laga enno." @@ -3247,89 +3798,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Tingingar: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Brukaren har ikkje siste notis" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Stad: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Om: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direkte melding til %s sendt" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Spesifer namnet til brukaren du vil tinge" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Tingar %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Spesifer namnet til brukar du vil fjerne tinging på" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Tingar ikkje %s lengre" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notifikasjon av." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notifikasjon på." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." @@ -3337,11 +3910,11 @@ msgstr "Kan ikkje slå på notifikasjon." msgid "Commands:\n" msgstr "Komandoar:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Kunne ikkje lagre melding." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." @@ -3358,7 +3931,7 @@ msgstr "" "Du har ei ny addresse å sende til på %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" @@ -3372,7 +3945,7 @@ msgstr "" "%1$s (%2$s) sendte deg ei privat melding: \n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Kun brukaren kan lese sine eigne meldingar." @@ -3381,31 +3954,39 @@ msgid "This form should automatically submit itself. " msgstr "Dette skjemaet vil automatisk bli sendt." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favorittar" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's favoritt meldingar" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Innboks" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Dine innkomande meldinger" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Utboks" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Dine sende meldingar" @@ -3418,14 +3999,19 @@ msgid "Twitter integration options" msgstr "Twitter integrerings-innstillingar" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Til" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Kunne ikkje prosessera melding." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s med vener, side %d" @@ -3435,21 +4021,31 @@ msgid "You can upload your personal avatar." msgstr "Du kan laste opp ein personleg avatar." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar-innstillingar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Skaler" @@ -3466,34 +4062,43 @@ msgid "There was a problem with your session token. " msgstr "Der var eit problem med sesjonen." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Fant ikkje igjen fil data." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Mista fila vår." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Ukjend fil type" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Ingen vald profil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Fann ingen profil med den IDen." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Blokker brukaren" @@ -3501,11 +4106,11 @@ msgstr "Blokker brukaren" msgid "Are you sure you want to block this user? " msgstr "Er du sikker på at du vil blokkera denne brukaren?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Du har allereie blokkert denne brukaren." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Lagring av informasjon feila." @@ -3522,38 +4127,56 @@ msgstr "Du er i ferd med å fjerne ein oppdatering for godt." msgid "Add to favorites" msgstr "Legg til i favorittar" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Rediger %s gruppa" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Innboks må være slått på for at grupper skal virke" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du må være logga inn for å lage ei gruppe." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Ingen kallenamn" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Fann ikkje gruppa" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppa" @@ -3562,14 +4185,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Kallenamn kann berre ha små bokstavar" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "skildringa er for lang (maks 140 teikn)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Lagra innstillingar." @@ -3586,7 +4210,8 @@ msgstr "Lag ei ny e-postadresse for å posta til;" msgid "Send me email when someone " msgstr "Send meg ein epost når nokon " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat vennar å sende meg ein epost." @@ -3598,7 +4223,7 @@ msgstr "Den e-postadressa er alt registrert hjå" msgid "A confirmation code was sent to the email address you added. " msgstr "Sendte konfirmasjonskode til e-postadresse du la til." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Server feil - kunne ikkje hente brukar!" @@ -3612,51 +4237,66 @@ msgstr "Vist du ønskjer at %s applikasjon skal automatisk oppgradere" msgid "Allow %s to update my Facebook status" msgstr "Tillat %s å oppdatere min Facebook status" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Hopp over" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Ingen innhald." #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginering" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "« Etter" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Før »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Takk for at du inviterar vennane dine til å bruke %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitasjon(er) sendt til fylgjande folk:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Du har blitt invitert til %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Inviter venane dine til å nytta %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Vennar som alt brukar %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Send invitasjonar" @@ -3698,12 +4338,14 @@ msgstr "Vist du ønskjer at %s skal atuomatisk oppdatere" msgid "Sync preferences" msgstr "Synkronisering" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Fjern favoritt" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Populære notisar" @@ -3717,7 +4359,8 @@ msgid "The most popular notices on the site right now." msgstr "Viser dei mest populære notisane på sida akkurat no." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Profilerte folk" @@ -3731,15 +4374,17 @@ msgstr "Profilerte folk, side %d" msgid "A selection of some of the great users on %s" msgstr "Eit utval av nokre av dei flotte folka på %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Ingen ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo åt gruppa" @@ -3747,11 +4392,13 @@ msgstr "Logo åt gruppa" msgid "You can upload a logo image for your group." msgstr "Du kan lasta opp ein logo for gruppa." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Feil ved oppdatering av logo." @@ -3770,7 +4417,8 @@ msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -3785,6 +4433,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% grupper lar deg finne og snakke med" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Opprett ei ny gruppe" @@ -3794,7 +4443,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Søk etter grupper på %%site.name%% etter namn, stad eller skildring." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Gruppesøk" @@ -3816,20 +4465,20 @@ msgstr "Send meg svar på Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Ein stadfestingskode vart sendt" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du må være logga inn for å bli med i ei gruppe." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Du er allereie medlem av den gruppa" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s blei medlem av gruppe %s" @@ -3838,15 +4487,18 @@ msgstr "%s blei medlem av gruppe %s" msgid "Inboxes must be enabled for groups to work." msgstr "Innboks må være slått på for at grupper skal kunne fungere." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Denne gruppa finst ikkje." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." @@ -3854,21 +4506,25 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "You may not leave a group while you are its administrator." msgstr "Du kan ikkje melde deg ut av ei gruppe når du er administrator i den." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Kan ikkje finne brukar." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s forlot %s gruppa" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Logg inn " @@ -3880,15 +4536,17 @@ msgstr "Ingen status" msgid "New group" msgstr "Ny gruppe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å lage ein ny gruppe." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." @@ -3900,11 +4558,14 @@ msgstr "Det er for langt." msgid "Don't send a message to yourself; " msgstr "Ikkje send melding til deg sjølv;" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Melding lagra" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax feil" @@ -3923,7 +4584,7 @@ msgstr "Dytta!" msgid "Nudge sent!" msgstr "Dytta!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID-innlogging" @@ -3947,11 +4608,13 @@ msgstr "URL forkorting" msgid "Service" msgstr "Teneste" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Den automatisk forkortingstenesta du vil bruke" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." @@ -3959,16 +4622,17 @@ msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." msgid "Change your password." msgstr "Endra passordet ditt" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Endra passord" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ikkje gyldig merkelapp: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Brukarar sjølv-merka med %s, side %d" @@ -3978,11 +4642,12 @@ msgstr "Brukarar sjølv-merka med %s, side %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Desse brukarane har merka seg sjølve med «%s»" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profil informasjon" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3994,20 +4659,25 @@ msgid "Automatically subscribe to whoever " msgstr "Automatisk tinging av alle som" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ugyldig merkelapp: %s" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Offentleg tidsline, side %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Kan ikkje hente offentleg straum." @@ -4017,8 +4687,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki" -"/Micro-blogging)-teneste" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4029,11 +4699,13 @@ msgstr "Offentleg emne sky" msgid "These are most popular recent tags on %s " msgstr "Dei mest populære emna på %s" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Emne sky" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Beklage, men kun inviterte kan registrere seg." @@ -4082,7 +4754,8 @@ msgstr "(Du skal få ein beskjed via epost )" msgid "That's a local profile! Login to subscribe." msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Svar til %s, side %d" @@ -4092,50 +4765,71 @@ msgstr "Svar til %s, side %d" msgid "%s favorite notices, page %d" msgstr "%s favoritt meldingar, side %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s gruppe" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s gruppe, side %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Gruppe profil" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Merknad" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Medlemmar" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle medlemmar" @@ -4145,14 +4839,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei " -"[mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Berre sendaren og mottakaren" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, side %d" @@ -4162,30 +4856,37 @@ msgid "'s profile" msgstr " sin profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Brukarprofil" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Bilete" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Brukarverkty" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Send ei direktemelding til denne brukaren" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Melding" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tingarar" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle gruppar" @@ -4195,8 +4896,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei " -"[mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4210,7 +4911,7 @@ msgstr "Send meg notisar på SMS;" msgid "A confirmation code was sent to the phone number you added. " msgstr "Ei stadfestingskode vart sendt til telefonnummeret du la til." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Telefontilbydar" @@ -4268,16 +4969,17 @@ msgstr "Dette er dei du lyttar til." msgid "These are the people whose " msgstr "Dette er folk som" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notisar merka med %s, side %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Meldingar merka med «%s», dei siste fyrst" @@ -4299,7 +5001,7 @@ msgstr "Merkelapp %s" msgid "Tag user" msgstr "Merk brukar" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4311,18 +5013,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " "tingar notisar frå deg." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Kunne ikkje lagra emneord." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " @@ -4332,20 +5034,23 @@ msgstr "" msgid "No such tag." msgstr "Dette emneord finst ikkje." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogg merka med emneordet %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blokkering av brukar feila." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "De-blokkering av brukar feila." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Finst ikkje." @@ -4353,15 +5058,16 @@ msgstr "Finst ikkje." msgid "Add your Twitter account to automatically send " msgstr "Legg til Twitter-kontoen din for å automatisk sende" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Brukarnamn hjå Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Passord hjå Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Vener på Twitter" @@ -4374,144 +5080,153 @@ msgstr "Brukarnamn kan berre innehalde tal," msgid "Unable to retrieve account information " msgstr "Klarte ikkje å hente informasjon om kontoen." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ingen profil-ID i førespurnaden." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Fann ingen profil med den IDen." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s grupper, side %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Last opp ein avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Anna" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Andre val" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Kopla til IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Logg inn med OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Alle" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "lisens." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Blokkér denne brukaren" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blokkér" @@ -4524,11 +5239,14 @@ msgstr "Fjern favoriseringsmerket" msgid "To use the %s Facebook Application you need to login " msgstr "For å nytta %s Facebook-programmet må du logga inn" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "ein ny konto." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publisert" @@ -4548,31 +5266,36 @@ msgstr "Filtrer emneord" msgid "All" msgstr "Alle" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Merkelapp" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Velg ein merkelapp for å begrense lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Gå" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Beskriv gruppa eller emnet med 140 teikn" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" @@ -4581,20 +5304,20 @@ msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" msgid "Group" msgstr "Gruppe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Administrator" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Rediger %s gruppa sine eigenskapar" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Legg til eller rediger logoen til %s" @@ -4624,11 +5347,11 @@ msgstr "Bli med" msgid "Leave" msgstr "Forlat" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Log inn med brukarnamn og passord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Opprett ny konto" @@ -4650,17 +5373,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s høyrer no på" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Stad: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Heimeside: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4669,7 +5392,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt dulta av %s" @@ -4684,39 +5407,47 @@ msgstr "%1$s (%2$s) lurer på kva du gjer på" msgid "%1$s just added your notice from %2$s" msgstr "%1$s lyttar no til notisane dine på %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Frå" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send ei direkte melding" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Send ei melding" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Tilgjenglege teikn" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "som svar på" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Slett denne notisen" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Slett" @@ -4737,27 +5468,29 @@ msgstr "Send eit dult til denne brukaren" msgid "Tags in %s's notices" msgstr "Merkelappar i %s sine notisar" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(ingen)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Offentleg" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Brukar grupper" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Nylege emneord" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Framheva" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Populære" @@ -4773,31 +5506,33 @@ msgstr "Finn grupper på denne sida" msgid "Untitled section" msgstr "Seksjon utan tittel" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Mennesker %s tingar" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Mennesker som tingar %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Grupper %s er medlem av" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Brukar har blokkert deg." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Lagre tinging for brukar: %s" @@ -4810,10 +5545,11 @@ msgid "Top posters" msgstr "Med flest meldingar" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Lås opp brukaren" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Lås opp" @@ -4821,6 +5557,2060 @@ msgstr "Lås opp" msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Straum for vener av %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Straum for vener av %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Straum for vener av %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s med vener" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan laste opp ein personleg avatar." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Lasta opp brukarbilete." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " +"ikkje finne ho att." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send meg ein epost når nokon sender meg ei privat melding." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Velg eit utvalg av bildet som vil blir din avatar." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ein feil oppstod ved sending av direkte melding." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Søkestraum for «%s»" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Skriv inn brukarnam og passord før du endrar innstillingar (av " +"tryggleiksomsyn)." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Offentleg straum" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Offentleg straum" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Offentleg straum" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Lag" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Gruppe profil" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " sin profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Utboks for %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukarbilete" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profilinnstillingar" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " +"koden og veiledning på korleis du nyttar han." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Ingen slik brukar" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " +"Twitter," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Søk etter folk eller innhald" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Kopla til IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Dult" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "For å nytta %s Facebook-programmet må du logga inn" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s fylgjer no oppdateringane dine på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Beste helsing,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Søk" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Slikt dokument finst ikkje." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Brukarprofil" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vener, side %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "De-blokkering av brukar feila." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Stadfestingskode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikkje sletta notisen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunne ikkje lagre favoritt." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ny notis" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Ny notis" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ikkje eit gyldig brukarnamn." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen vald profil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Brukar har blokkert deg." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blokker brukaren" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupper" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkroniserings innstillingar blei lagra." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du må være administrator for å redigere gruppa" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrator" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ingen resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Brukar har blokkert deg." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Melding" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kan ikkje lagra profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " +"brukar kontoen. Velikehold dine OpenID herfra." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profilinnstillingar" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " +"mista det gamle." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Passord opphenting etterspurt" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Feil med stadfestingskode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Lagre tinging for brukar: %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoritt meldingar, side %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Administrator" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ikkje ein lokal brukar." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notisar merka med %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s høyrer no på" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Denne notisen er alt ein favoritt!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Denne notisen er ikkje ein favoritt!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kan ikkje hente offentleg straum." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Ingen mottakar spesifisert." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kan ikkje finna einkvan status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringar som svarar til %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "lisens." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s tingarar" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profilinnstillingar" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Eit problem oppstod ved lagring av notis." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Melding til %1$s på %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Brukarprofil" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Last opp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endra passordet ditt" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kopla til" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blokkér" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Blokker brukaren" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Legg til eller rediger logoen til %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Ingen innhald." + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Brukar" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Heimesida er ikkje ei gyldig internettadresse." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Dette emneord finst ikkje." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte meldingar til %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det er for langt. Ein notis kan berre være 140 teikn." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allereie medlem av den gruppa" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunne ikkje fjerne %s fra %s gruppa " + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grupper" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupper %s er medlem av" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppe handlingar" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Støttar ikkje bileteformatet." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Bilete" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Brukaren du lyttar til eksisterer ikkje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ikkje autorisert." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Ukjend versjon av OMB-protokollen." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Denne notisen finst ikkje." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Mista fila vår." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" +"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" +"%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer frå søket «%s»" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Skriv om deg og interessene dine med 140 teikn" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Skildra deg sjølv og din" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 " + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Fekk ikkje spørjingsbillett (request token)." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notisstraum for %s gruppa" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Melding til %1$s på %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s gruppe" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Melding lagra" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notisstraum for %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " +"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " +"gjennomførast. Ditt tingings teikn er: " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " +"med sida sine instruksjonar for korleis ein skal avvise tinginga." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikkje lesa brukarbilete-URL «%s»" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Feil biletetype for '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Klarte ikkje å omdirigera til tenaren: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNets programvarelisens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Dytta!" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svar på denne notisen" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Eit problem oppstod ved lagring av notis." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen stadfestingskode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Logg inn or sida" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Velg ein tilbydar" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Notisstraum for %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la til di melding som ein favoritt" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " frå " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kunne ikkje slette favoritt." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Slett notis" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Kunne ikkje prosessera melding." diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index dba116252e26622d7e0f2d9979f9348de20f0385..902669dee93187ece27416e351a135132fd88b72 100644 GIT binary patch delta 28820 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 IZMWV30%TBLJpcdz delta 25465 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 CZ`QH^ diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 54c52e9496..fd36729c45 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: pl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-14 10:32-0700\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-09 15:47+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" @@ -50,12 +50,13 @@ msgid "%1$s / Updates replying to %2$s" msgstr "%1$s/aktualizacje odpowiadające na %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -137,20 +138,21 @@ msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Status użytkownika %1$s na %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" @@ -170,14 +172,16 @@ msgstr "Publiczny strumień użytkownika %s" #: actions/facebookhome.php:163 actions/twitapistatuses.php:130 #: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 #: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oś czasu użytkownika %s" @@ -190,19 +194,22 @@ msgstr "Status użytkownika %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Użytkownik %s aktualizuje od każdego!" #: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -211,7 +218,7 @@ msgstr "" "potwierdzenia adresu e-mail)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -221,7 +228,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " @@ -235,33 +242,34 @@ msgstr "" #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" #: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 lub więcej znaków" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 lub więcej znaków, i nie zapomnij go!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 lub więcej znaków. Wymagane." #: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -271,7 +279,7 @@ msgstr "" "zaakceptować otrzymywanie wiadomości od %s." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -320,7 +328,21 @@ msgstr "" #: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 #: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 #: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Nie znaleziono metody API!" @@ -353,12 +375,13 @@ msgid "API method under construction." msgstr "Metoda API jest w trakcie tworzenia." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "O usłudze" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Zaakceptuj" @@ -370,6 +393,8 @@ msgstr "Zaakceptuj" #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 #: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Dodaj" @@ -387,12 +412,13 @@ msgstr "Dodaj lub usuń konta OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresy przyjaciół, których zapraszasz (jeden na wiersz)" @@ -419,6 +445,7 @@ msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Jesteś już zalogowany." @@ -428,23 +455,27 @@ msgstr "Już subskrybowane!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -455,7 +486,8 @@ msgstr "" #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 #: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Awatar" @@ -465,7 +497,7 @@ msgid "Avatar updated." msgstr "Zaktualizowano awatar." #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -476,7 +508,7 @@ msgstr "" "znajomych?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -486,7 +518,7 @@ msgstr "" "instrukcjami." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." @@ -497,7 +529,8 @@ msgstr "Wcześniej »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "O mnie" @@ -511,6 +544,7 @@ msgid "Bio is too long (max 140 chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Nie można usunąć tego wpisu." @@ -524,6 +558,7 @@ msgstr "Nie można odczytać adresu URL awatara \"%s\"" #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Nie można zapisać nowego hasła." @@ -531,7 +566,8 @@ msgstr "Nie można zapisać nowego hasła." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Anuluj" @@ -541,22 +577,23 @@ msgid "Cannot instantiate OpenID consumer object." msgstr "Nie można utworzyć instancji obiektu klienta OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Nie można znormalizować tego identyfikatora Jabbera" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Zmień" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" @@ -566,11 +603,12 @@ msgid "Change password" msgstr "Zmień hasło" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Zmień hasło" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" @@ -581,6 +619,8 @@ msgstr "Zmień ustawienia profilu" #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 #: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Potwierdź" @@ -594,11 +634,13 @@ msgstr "Potwierdź adres" #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 #: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Anulowano potwierdzenie." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Kod potwierdzający" @@ -608,7 +650,7 @@ msgid "Confirmation code not found." msgstr "Nie znaleziono kodu potwierdzającego." #: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -644,7 +686,7 @@ msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Połącz" @@ -654,7 +696,7 @@ msgid "Connect existing account" msgstr "Połącz z istniejącym kontem" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" @@ -668,12 +710,14 @@ msgstr "Nie można utworzyć formularza OpenID: %s" #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 #: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Nie można obserwować użytkownika: %s jest już na Twojej liście." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." @@ -717,7 +761,8 @@ msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." @@ -740,23 +785,26 @@ msgstr "Nie można uzyskać tokenu żądana." #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 #: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nie można wprowadzić kodu potwierdzającego." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Nie można zapisać profilu." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." @@ -766,6 +814,8 @@ msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." #: actions/emailsettings.php:447 actions/emailsettings.php:469 #: actions/smssettings.php:515 actions/smssettings.php:539 #: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Nie można zaktualizować wpisu użytkownika." @@ -783,7 +833,11 @@ msgstr "Nie można zaktualizować wpisu użytkownika." #: actions/profilesettings.php:259 actions/smssettings.php:266 #: actions/smssettings.php:408 actions/emailsettings.php:287 #: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Nie można zaktualizować użytkownika." @@ -810,17 +864,17 @@ msgstr "" "użytkownika." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Obecnie potwierdzone adresy Jabbera/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Obecnie potwierdzone adresy e-mail." @@ -829,19 +883,20 @@ msgid "Currently" msgstr "Obecnie" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika hasha: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Usuń wpis" @@ -856,12 +911,13 @@ msgstr "Opisz się i swoje zainteresowania w 140 znakach" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Adres e-mail" @@ -871,7 +927,7 @@ msgid "Email Settings" msgstr "Ustawienia adresu e-mail" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Adres e-mail już istnieje." @@ -880,22 +936,23 @@ msgid "Email address confirmation" msgstr "Potwierdzenie adresu e-mail" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@przykład.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Adresy e-mail" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Podaj pseudonim lub adres e-mail." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Podaj kod, który otrzymałeś na telefonie." @@ -917,21 +974,25 @@ msgstr "Błąd podczas łączenia użytkownika." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Błąd podczas wprowadzania awatara" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Błąd podczas wprowadzania nowego profilu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Błąd podczas wprowadzania zdalnego profilu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Błąd podczas zapisywania potwierdzenia adresu." @@ -952,6 +1013,7 @@ msgstr "Błąd podczas zapisywanie użytkownika." #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." @@ -961,7 +1023,8 @@ msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 #: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Błąd podczas ustawiania użytkownika." @@ -972,6 +1035,7 @@ msgstr "Błąd podczas aktualizowania profilu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Błąd podczas aktualizowania zdalnego profilu" @@ -986,7 +1050,7 @@ msgid "Existing nickname" msgstr "Istniejący pseudonim" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" @@ -1025,7 +1089,7 @@ msgstr "Przeszukaj zawartość wpisów" msgid "Find people on this site" msgstr "Znajdź osoby na tej stronie" -#: ../actions/login.php:122 actions/login.php:247 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -1041,6 +1105,8 @@ msgstr "" #: actions/showgroup.php:237 actions/showstream.php:255 #: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 #: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Imię i nazwisko" @@ -1052,17 +1118,21 @@ msgstr "Imię i nazwisko" #: actions/updateprofile.php:97 actions/updateprofile.php:99 #: actions/editgroup.php:197 actions/newgroup.php:147 #: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Pomoc" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Strona główna" @@ -1070,7 +1140,8 @@ msgstr "Strona główna" #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 #: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Strona domowa" @@ -1080,21 +1151,25 @@ msgstr "Strona domowa" #: actions/profilesettings.php:199 actions/register.php:168 #: actions/editgroup.php:194 actions/newgroup.php:144 #: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Chcę wysyłać wpisy przez e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Komunikator" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adres komunikatora" @@ -1131,28 +1206,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Wiadomości przychodzące" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Usunięto przychodzący adres e-mail." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Niepoprawne stare hasło" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Niepoprawna nazwa użytkownika lub hasło." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1185,7 +1263,7 @@ msgid "Invalid license URL '%s'" msgstr "Nieprawidłowy adres URL licencji \"%s\"" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Nieprawidłowa zawartość wpisu" @@ -1206,7 +1284,7 @@ msgid "Invalid profile URL '%s'." msgstr "Nieprawidłowy adres URL profilu \"%s\"." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Nieprawidłowy adres URL profilu (błędny format)" @@ -1226,33 +1304,33 @@ msgstr "Nieprawidłowy rozmiar." #: actions/finishopenidlogin.php:279 actions/register.php:193 #: actions/register.php:211 actions/finishopenidlogin.php:284 #: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Wysłano zaproszenia" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Wysłano zaproszenia do następujących osób:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Zaproś" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Zaproś nowych użytkowników" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1264,12 +1342,12 @@ msgstr "" "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Identyfikator Jabbera należy już do innego użytkownika." #: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1281,11 +1359,13 @@ msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Język" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Język jest za długi (maksymalnie 50 znaków)." @@ -1299,6 +1379,10 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)." #: actions/register.php:454 actions/showgroup.php:251 #: actions/showstream.php:229 actions/userauthorization.php:128 #: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Położenie" @@ -1310,6 +1394,9 @@ msgstr "Położenie" #: actions/updateprofile.php:112 actions/updateprofile.php:114 #: actions/editgroup.php:203 actions/newgroup.php:153 #: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." @@ -1321,7 +1408,8 @@ msgstr "Położenie jest za długie (maksymalnie 255 znaków)." #: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 #: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 #: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Zaloguj się" @@ -1344,24 +1432,25 @@ msgstr "" "openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Wyloguj się" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" nazwisko" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Zgubione lub zapomniane hasło?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj stary." @@ -1383,6 +1472,7 @@ msgid "Microblog by %s" msgstr "Mikroblog użytkownika %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1396,13 +1486,14 @@ msgstr "" #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 #: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Moje teksty i pliki są dostępne na " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nowe" @@ -1414,6 +1505,7 @@ msgstr "Nowy adres e-mail do wysyłania do %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -1423,19 +1515,20 @@ msgid "New nickname" msgstr "Nowy pseudonim" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nowy wpis" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nowe hasło" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." @@ -1449,7 +1542,9 @@ msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." #: actions/showgroup.php:226 actions/showstream.php:244 #: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 #: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Pseudonim" @@ -1461,6 +1556,9 @@ msgstr "Pseudonim" #: actions/register.php:159 actions/editgroup.php:185 #: actions/finishopenidlogin.php:231 actions/newgroup.php:135 #: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." @@ -1474,6 +1572,9 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." #: actions/updateprofile.php:83 actions/editgroup.php:181 #: actions/finishopenidlogin.php:221 actions/newgroup.php:131 #: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." @@ -1483,7 +1584,7 @@ msgid "Nickname not allowed." msgstr "Niedozwolony pseudonim." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Pseudonim użytkownika którego chcesz obserwować" @@ -1496,26 +1597,28 @@ msgstr "Pseudonim lub adres e-mail" #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 #: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nie" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Brak identyfikatora Jabbera." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Brak żądania upoważnienia!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Nie wybrano operatora." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nie podano kodu" @@ -1528,12 +1631,14 @@ msgstr "Brak kodu potwierdzającego." #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 #: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Brak zawartości!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Brak adresu e-mail." @@ -1544,6 +1649,7 @@ msgstr "Brak identyfikatora." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Brak przychodzącego adresu e-mail." @@ -1554,6 +1660,7 @@ msgstr "Zdalny serwer nie dostarczył pseudonimu." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Brak pseudonimu." @@ -1562,11 +1669,13 @@ msgstr "Brak pseudonimu." #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 #: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Brak oczekujących potwierdzeń do anulowania." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Brak numeru telefonu." @@ -1577,6 +1686,7 @@ msgstr "Serwer nie zwrócił adresu URL profilu." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." @@ -1601,13 +1711,14 @@ msgstr "Brak rozmiaru." #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 #: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nie znaleziono statusów z tym identyfikatorem." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nie znaleziono statusów z tym identyfikatorem." @@ -1617,13 +1728,15 @@ msgid "No such OpenID." msgstr "Nie ma takiego identyfikatora OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Nie ma takiego dokumentu." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Nie ma takiego wpisu." @@ -1668,11 +1781,15 @@ msgstr "Nie ma takiej subskrypcji" #: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 #: lib/command.php:178 lib/command.php:227 lib/command.php:264 #: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Brak takiego użytkownika." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Brak użytkownika z tym adresem e-mail lub nazwą użytkownika." @@ -1695,12 +1812,13 @@ msgstr "To nie jest zarejestrowany użytkownik." #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 #: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 #: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "To nie jest prawidłowy identyfikator Jabbera" @@ -1711,11 +1829,12 @@ msgstr "To nie jest prawidłowy identyfikator OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "To nie jest prawidłowy adres e-mail" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." @@ -1725,6 +1844,9 @@ msgstr "To nie jest prawidłowy adres e-mail." #: actions/profilesettings.php:195 actions/register.php:161 #: actions/editgroup.php:188 actions/newgroup.php:138 #: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." @@ -1745,6 +1867,7 @@ msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "To nie jest obraz lub lub plik jest uszkodzony." @@ -1755,12 +1878,13 @@ msgstr "Brak upoważnienia." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Nieoczekiwana odpowiedź!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Nie znaleziono" @@ -1779,6 +1903,8 @@ msgstr "Nie znaleziono" #: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 #: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Niezalogowany." @@ -1799,7 +1925,7 @@ msgid "Notice feed for %s" msgstr "Kanał wpisów dla %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Wpis nie posiada profilu" @@ -1807,19 +1933,20 @@ msgstr "Wpis nie posiada profilu" #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 #: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Wpisy" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Stare hasło" @@ -1886,7 +2013,7 @@ msgid "OpenID settings" msgstr "Ustawienia OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." @@ -1903,17 +2030,20 @@ msgstr "Częściowo wysłano." #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 #: actions/login.php:214 lib/facebookaction.php:315 #: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Hasło" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Hasło i potwierdzenie nie pasują do siebie." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Hasło musi mieć sześć lub więcej znaków." @@ -1921,6 +2051,7 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Zażądano przywracania hasła" @@ -1928,6 +2059,7 @@ msgstr "Zażądano przywracania hasła" #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Zapisano hasło." @@ -1935,6 +2067,7 @@ msgstr "Zapisano hasło." #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 #: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Hasła nie pasują do siebie." @@ -1959,12 +2092,12 @@ msgid "Personal" msgstr "Osobiste" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Osobista wiadomość" #: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" @@ -1978,7 +2111,7 @@ msgstr "" "użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Wyślij wpis, kiedy zmieni się mój status na Jabberze/GTalk." @@ -1988,6 +2121,8 @@ msgstr "Wyślij wpis, kiedy zmieni się mój status na Jabberze/GTalk." #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 #: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencje" @@ -1997,39 +2132,44 @@ msgstr "Preferencje" #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 #: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Zapisano preferencje." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferowany język" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Prywatność" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 #: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Adres URL profilu" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Ustawienia profilu" @@ -2046,17 +2186,18 @@ msgstr "Kanał publicznego strumienia" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Publiczna oś czasu" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabbera/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Opublikuj MicroID adresu e-mail." @@ -2067,11 +2208,13 @@ msgstr "Ostatnie znaczniki" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Przywróć" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Przywróć hasło" @@ -2086,7 +2229,8 @@ msgstr "Kod przywracania dla nieznanego użytkownika." #: lib/facebookaction.php:277 lib/logingroupnav.php:78 #: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 #: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -2104,13 +2248,14 @@ msgstr "Rejestracja powiodła się" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Odrzuć" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Zapamiętaj mnie" @@ -2120,7 +2265,7 @@ msgid "Remote profile with no matching profile" msgstr "Zdalny profil bez odpowiadającego profilu" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Zasubskrybuj zdalnie" @@ -2134,7 +2279,9 @@ msgstr "Zasubskrybuj zdalnie" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Usuń" @@ -2161,28 +2308,32 @@ msgstr "Odpowiedzi" #: actions/replies.php:116 actions/repliesrss.php:67 #: lib/personalgroupnav.php:104 actions/replies.php:118 #: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Odpowiedzi na %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Przywróć" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Przywróć hasło" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numer telefonu SMS" @@ -2197,11 +2348,12 @@ msgstr "Potwierdzenie SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Takie samo jak powyższe hasło" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." @@ -2219,12 +2371,16 @@ msgstr "Takie samo jak powyższe hasło. Wymagane." #: actions/twittersettings.php:164 actions/othersettings.php:119 #: actions/profilesettings.php:152 actions/subscriptions.php:185 #: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Znajdź" @@ -2254,7 +2410,7 @@ msgstr "" "znaki lub więcej." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Wybierz operatora" @@ -2262,28 +2418,30 @@ msgstr "Wybierz operatora" #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 #: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Wyślij" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Wyślij mi wpisy nowych subskrypcji przez e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Wyślij mi wpisy przez Jabbera/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2292,7 +2450,7 @@ msgstr "" "swojego operatora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." @@ -2304,6 +2462,7 @@ msgstr "Ustawienia" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -2333,13 +2492,14 @@ msgid "Sorry, that is not your incoming email address." msgstr "Przepraszamy, to nie jest twój przychodzący adres e-mail." #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kod źródłowy" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statystyki" @@ -2356,6 +2516,7 @@ msgstr "Nie znaleziono przechowywanego identyfikatora OpenID." #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 #: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Zasubskrybuj" @@ -2369,13 +2530,13 @@ msgstr "Subskrybenci" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" @@ -2390,6 +2551,7 @@ msgstr "Subskrypcje" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." @@ -2400,6 +2562,7 @@ msgstr "Błąd systemu podczas wysyłania pliku." #: actions/tagother.php:209 lib/profilelist.php:160 #: actions/profilesettings.php:123 actions/showstream.php:255 #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Znaczniki" @@ -2429,7 +2592,7 @@ msgid "That confirmation code is not for you!" msgstr "Ten kod potwierdzający nie jest przeznaczony dla Ciebie!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Ten adres e-mail należy już do innego użytkownika." @@ -2439,49 +2602,52 @@ msgid "That file is too big." msgstr "Ten plik jest za duży." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ten identyfikator Jabbera jest już Twój." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Ten adres e-mail jest już Twój." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Ten numer telefonu jest już Twój." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "To nie jest Twój identyfikator Jabbera." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "To nie jest Twój adres e-mail." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "To nie jest Twój numer telefonu." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "To jest błędny adres komunikatora." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "To jest błędny numer potwierdzenia." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Ten numer telefonu należy już do innego użytkownika." @@ -2512,6 +2678,8 @@ msgstr "Adres \"%s\" został potwierdzony dla Twojego konta." #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 #: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adres został usunięty." @@ -2558,7 +2726,7 @@ msgid "These are the people whose notices you listen to." msgstr "Osoby, których wpisy obserwujesz." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" @@ -2595,7 +2763,7 @@ msgstr "" #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 #: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ta metoda wymaga POST lub DELETE." @@ -2608,6 +2776,12 @@ msgstr "Ta metoda wymaga POST lub DELETE." #: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 #: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 #: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." @@ -2617,15 +2791,18 @@ msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Strefa czasowa" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2639,18 +2816,20 @@ msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Należy dostarczyć dwa identyfikatory lub nazwy użytkowników." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adres URL strony domowej, bloga lub profilu na innej stronie" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" @@ -2665,16 +2844,19 @@ msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #: actions/avatarsettings.php:263 actions/emailsettings.php:247 #: actions/grouplogo.php:324 actions/twittersettings.php:306 #: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Nieoczekiwane przywrócenie hasła." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Nieznane działanie" @@ -2711,22 +2893,24 @@ msgstr "Nieobsługiwana wersja OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Nieobsługiwany format pliku obrazu." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" @@ -2734,6 +2918,8 @@ msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 #: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -2741,6 +2927,7 @@ msgstr "Aktualizacje od %1$s na %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Wyślij" @@ -2761,7 +2948,7 @@ msgid "Upload a new profile image" msgstr "Wyślij nowy obraz profilu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2771,6 +2958,7 @@ msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" @@ -2798,11 +2986,12 @@ msgstr "Obserwowany użytkownik nie istnieje." #: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 #: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Pseudonim użytkownika" @@ -2812,10 +3001,12 @@ msgstr "Nie znaleziono użytkownika." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Co słychać, %s?" @@ -2823,7 +3014,8 @@ msgstr "Co słychać, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 #: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" @@ -2844,7 +3036,7 @@ msgstr "Błędny rozmiar obrazu \"%s\"" #: actions/block.php:148 actions/deletenotice.php:122 #: actions/deletenotice.php:141 actions/deletenotice.php:115 #: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Tak" @@ -2867,7 +3059,7 @@ msgid "You are already logged in!" msgstr "Jesteś już zalogowany!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Jesteś już zasubskrybowany do tych użytkowników:" @@ -2909,6 +3101,7 @@ msgstr "" "Skonfiguruj adres i ustawienia poniżej." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2919,13 +3112,14 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Można używać lokalnej subskrypcji!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." @@ -2958,7 +3152,7 @@ msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Nie można usuwać statusów innych użytkowników." @@ -2970,7 +3164,7 @@ msgstr "" "Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -3003,56 +3197,56 @@ msgstr "" "identyfikatorami OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "kilka sekund temu" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "blisko dzień temu" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "około minutę temu" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "około miesiąc temu" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "około rok temu" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "około godzinę temu" @@ -3074,7 +3268,7 @@ msgid "reply" msgstr "odpowiedz" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "takie samo jak hasło powyżej" @@ -3114,7 +3308,14 @@ msgstr "« Następne" #: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 #: actions/othersettings.php:138 actions/recoverpassword.php:334 #: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -3123,7 +3324,7 @@ msgid "This notice is not a favorite!" msgstr "Ten wpis nie jest ulubiony!" #: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Nie można usunąć ulubionego wpisu." @@ -3132,10 +3333,12 @@ msgid "Favor" msgstr "Dodaj do ulubionych" #: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi prywatną wiadomość." @@ -3150,6 +3353,7 @@ msgstr "Ten wpis jest już ulubiony!" #: actions/twitapifavorites.php:125 classes/Command.php:152 #: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 #: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." @@ -3215,7 +3419,7 @@ msgid "That's too long. Max message size is 140 chars." msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." #: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nie podano odbiorcy." @@ -3223,7 +3427,8 @@ msgstr "Nie podano odbiorcy." #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 #: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." @@ -3232,17 +3437,19 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: classes/Command.php:240 actions/newmessage.php:161 #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Nie ma takiego użytkownika" #: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nowa wiadomość" @@ -3301,7 +3508,8 @@ msgstr "Można tutaj zaktualizować osobiste informacje profilu " #: actions/avatarsettings.php:106 actions/avatarsettings.php:182 #: actions/grouplogo.php:183 actions/remotesubscribe.php:366 #: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Użytkownik bez odpowiadającego profilu" @@ -3331,6 +3539,7 @@ msgstr "Pomyślnie zapisano nowe hasło. " #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Hasło musi mieć sześć lub więcej znaków." @@ -3359,6 +3568,7 @@ msgstr "Kanał ulubionych wpisów użytkownika %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Nie można odebrać ulubionych wpisów." @@ -3391,12 +3601,14 @@ msgstr "Operator komórkowy Twojego telefonu. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Bezpośrednia wiadomość do użytkownika %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" @@ -3408,6 +3620,7 @@ msgstr "Wysłane bezpośrednie wiadomości" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" @@ -3415,21 +3628,21 @@ msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Brak tekstu wiadomości!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Nie znaleziono odbiorcy." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " @@ -3437,12 +3650,14 @@ msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s/ulubione wpisy od %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "Użytkownik %s aktualizuje ulubione według %s/%s." @@ -3612,41 +3827,42 @@ msgstr "Subskrypcje: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Użytkownik nie posiada ostatniego wpisu" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Zaznaczono wpis jako ulubiony." #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Położenie: %s" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "O mnie: %s" @@ -3658,61 +3874,63 @@ msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Podaj nazwę użytkownika do zasubskrybowania" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Zasubskrybowano użytkownika %s" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Usunięto subskrypcję użytkownika %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Wyłączono powiadomienia." #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Włączono powiadomienia." #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." @@ -3720,11 +3938,11 @@ msgstr "Nie można włączyć powiadomień." msgid "Commands:\n" msgstr "Polecenia:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Nie można wprowadzić wiadomości." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." @@ -3770,7 +3988,7 @@ msgstr "Ulubione" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Ulubione wpisy użytkownika %s" @@ -3810,7 +4028,7 @@ msgstr "Opcje integracji z Twitterem" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Do" @@ -3821,7 +4039,7 @@ msgstr "Nie można przeanalizować wiadomości." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "Użytkownik %s i przyjaciele, strona %d" @@ -3833,6 +4051,7 @@ msgstr "Można wysłać osobisty awatar." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Ustawienia awatara" @@ -3840,6 +4059,7 @@ msgstr "Ustawienia awatara" #: actions/grouplogo.php:198 actions/grouplogo.php:258 #: actions/avatarsettings.php:126 actions/avatarsettings.php:202 #: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Oryginał" @@ -3847,11 +4067,13 @@ msgstr "Oryginał" #: actions/grouplogo.php:209 actions/grouplogo.php:270 #: actions/avatarsettings.php:141 actions/avatarsettings.php:214 #: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Przytnij" @@ -3874,11 +4096,13 @@ msgstr "Wybierz kwadratowy obszar obrazu do awatara" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Utracono dane pliku." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Utracono plik." @@ -3886,6 +4110,7 @@ msgstr "Utracono plik." #: actions/grouplogo.php:406 actions/grouplogo.php:440 #: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Nieznany typ pliku" @@ -3943,7 +4168,8 @@ msgid "Inboxes must be enabled for groups to work" msgstr "Skrzynki odbiorcze grup muszą być włączone, aby działały" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Musisz być zalogowany, aby utworzyć grupę." @@ -3952,6 +4178,8 @@ msgstr "Musisz być zalogowany, aby utworzyć grupę." #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 #: actions/blockedfromgroup.php:73 actions/editgroup.php:89 #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Brak pseudonimu" @@ -3960,18 +4188,23 @@ msgstr "Brak pseudonimu" #: actions/showgroup.php:128 actions/grouplogo.php:104 #: actions/grouprss.php:103 actions/blockedfromgroup.php:80 #: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Nie ma takiej grupy" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 #: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Musisz być administratorem, aby zmodyfikować grupę" #: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Użyj tego formularza, aby zmodyfikować grupę." @@ -4006,6 +4239,7 @@ msgid "Send me email when someone " msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś " #: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." @@ -4044,18 +4278,21 @@ msgstr "Brak zawartości wpisu!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginacja" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Następne" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Wcześniej" @@ -4136,6 +4373,7 @@ msgstr "Usuń wpis z ulubionych" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Popularne wpisy" @@ -4164,16 +4402,17 @@ msgstr "Znani użytkownicy, strona %d" msgid "A selection of some of the great users on %s" msgstr "Wybór znanych użytkowników na %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Ten użytkownik zablokował Cię z subskrypcji." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Brak identyfikatora" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo grupy" @@ -4182,10 +4421,12 @@ msgid "You can upload a logo image for your group." msgstr "Można wysłać obraz logo dla grupy." #: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Zaktualizowano logo." #: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Zaktualizowanie logo nie powiodło się." @@ -4252,20 +4493,20 @@ msgstr "Wyślij mi odpowiedzi przez Jabbera/GTalk " msgid "A confirmation code was sent " msgstr "Kod potwierdzający został wysłany " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Musisz być zalogowany, aby dołączyć do grupy." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Jesteś już członkiem tej grupy" -#: actions/joingroup.php:128 actions/joingroup.php:133 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Nie można dołączyć użytkownika %s do grupy %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "Użytkownik %s dołączył do grupy %s" @@ -4274,16 +4515,18 @@ msgstr "Użytkownik %s dołączył do grupy %s" msgid "Inboxes must be enabled for groups to work." msgstr "Skrzynki odbiorcze dla grup muszą być włączone, aby działały." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Nie ma takiej grupy." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." @@ -4292,20 +4535,24 @@ msgid "You may not leave a group while you are its administrator." msgstr "Nie możesz opuścić grupy, kiedy jesteś jej administratorem." #: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Nie można znaleźć wpisu członkostwa." #: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Nie można usunąć użytkownika %s z grupy %s" #: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "Użytkownik %s opuścił grupę %s" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Zaloguj się na stronie" @@ -4317,15 +4564,17 @@ msgstr "Brak obecnego statusu" msgid "New group" msgstr "Nowa grupa" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Użyj tego formularza, aby utworzyć nową grupę." #: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Nie można utworzyć grupy." #: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." @@ -4338,12 +4587,13 @@ msgid "Don't send a message to yourself; " msgstr "Nie wysyłaj wiadomości do siebie; " #: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Wysłano wpis" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Błąd AJAX" @@ -4387,10 +4637,12 @@ msgid "Service" msgstr "Usługa" #: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Używana automatyczna usługa skracania." #: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." @@ -4399,6 +4651,7 @@ msgid "Change your password." msgstr "Zmień hasło." #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Zmiana hasła" @@ -4417,11 +4670,12 @@ msgstr "Użytkownicy używający znacznika %s - strona %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "To są użytkownicy którzy nadali sobie znacznik \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informacje o profilu" #: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4434,20 +4688,24 @@ msgstr "Automatycznie zasubskrybuj do każdego " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Nieprawidłowy znacznik: \"%s\"" #: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Publiczna oś czasu, strona %d" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Nie można pobrać publicznego strumienia." @@ -4474,7 +4732,8 @@ msgid "Tag cloud" msgstr "Chmura znaczników" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Przepraszamy, tylko zaproszone osoby mogą się rejestrować." @@ -4524,6 +4783,7 @@ msgid "That's a local profile! Login to subscribe." msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Odpowiedzi na %s, strona %d" @@ -4544,7 +4804,7 @@ msgid "%s group, page %d" msgstr "Grupa %s, strona %d" #: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profil grupy" @@ -4553,7 +4813,9 @@ msgstr "Profil grupy" #: actions/showgroup.php:253 actions/showstream.php:271 #: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 #: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "Adres URL" @@ -4562,12 +4824,14 @@ msgstr "Adres URL" #: actions/showgroup.php:264 actions/showstream.php:282 #: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 #: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Wpis" #: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Działania grupy" @@ -4578,7 +4842,8 @@ msgstr "Kanał wpisów dla grupy %s" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Członkowie" @@ -4587,11 +4852,12 @@ msgstr "Członkowie" #: lib/tagcloudsection.php:71 actions/showgroup.php:344 #: actions/showgroup.php:378 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Brak)" #: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Wszyscy członkowie" @@ -4619,24 +4885,28 @@ msgstr " - profil" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profil użytkownika" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Zdjęcie" #: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Działania użytkownika" #: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" #: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Wiadomość" @@ -4669,7 +4939,7 @@ msgstr "Wyślij mi wpisy przez SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Operator komórkowy" @@ -4728,11 +4998,11 @@ msgid "These are the people whose " msgstr "Osoby, których " #: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Wpisy ze znacznikiem %s, strona %d" @@ -4797,15 +5067,17 @@ msgid "Microblog tagged with %s" msgstr "Mikroblogi ze znacznikiem %s" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Zablokowanie użytkownika nie powiodło się." #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Nie znaleziono." @@ -4839,19 +5111,20 @@ msgstr "Nie można pobrać informacji o koncie " msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Brak identyfikatora profilu w żądaniu." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Brak profilu z tym identyfikatorem." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" #: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupy %s" @@ -4862,10 +5135,12 @@ msgid "%s groups, page %d" msgstr "Grupy %s, strona %d" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" @@ -4873,47 +5148,50 @@ msgstr "" "kilka minut." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Zabroniono Ci wysyłania wpisów na tej stronie." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Wyślij awatar" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Inne" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Inne opcje" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Główna nawigacja strony" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Znajdź osoby lub tekst" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" @@ -4921,15 +5199,15 @@ msgstr "Zmień adres e-mail, awatar, hasło, profil" msgid "Connect to IM, SMS, Twitter" msgstr "Połącz z komunikatorem, SMS, Twitterem" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Wyloguj się ze strony" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Zaloguj się na stronę" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Utwórz konto" @@ -4937,44 +5215,46 @@ msgstr "Utwórz konto" msgid "Login with OpenID" msgstr "Zaloguj się za pomocą OpenID" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Pomóż mi!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Wpis strony" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Druga nawigacja strony" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Wszystko " -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licencja." #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Zablokuj tego użytkownika" #: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Zablokuj" @@ -5015,14 +5295,17 @@ msgid "All" msgstr "Wszystko" #: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Znacznik" #: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Wybierz znacznik do ograniczonej listy" #: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Przejdź" @@ -5031,6 +5314,7 @@ msgid "URL of the homepage or blog of the group or topic" msgstr "Adres URL strony domowej lub bloga grupy, albo temat" #: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -5039,6 +5323,7 @@ msgid "Describe the group or topic in 140 chars" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -5092,11 +5377,11 @@ msgstr "Dołącz" msgid "Leave" msgstr "Opuść" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Załóż nowe konto" @@ -5157,15 +5442,16 @@ msgstr "%1$s właśnie dodał Twój wpis z %2$s" msgid "From" msgstr "Od" -#: lib/messageform.php:110 lib/messageform.php:109 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" -#: lib/noticeform.php:125 lib/noticeform.php:128 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Wyślij wpis" -#: lib/noticeform.php:152 lib/noticeform.php:149 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Dostępne znaki" @@ -5175,21 +5461,23 @@ msgstr "w odpowiedzi na" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Odpowiedz" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Usuń ten wpis" #: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Usuń" @@ -5264,6 +5552,7 @@ msgid "Groups %s is a member of" msgstr "Grupy %s są członkiem" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do Ciebie na %s" @@ -5273,7 +5562,7 @@ msgid "User has blocked you." msgstr "Użytkownik zablokował Cię." #: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Zasubskrybuj tego użytkownika" @@ -5298,22 +5587,22 @@ msgstr "Odblokuj" msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" -#: actions/all.php:77 actions/all.php:59 +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#: actions/all.php:82 actions/all.php:64 +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#: actions/all.php:87 actions/all.php:69 +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#: actions/all.php:112 actions/all.php:125 +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 msgid "You and friends" msgstr "Ty i przyjaciele" @@ -5336,7 +5625,7 @@ msgstr "" "do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " "przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." -#: actions/deletenotice.php:73 +#: actions/deletenotice.php:73 actions/deletenotice.php:103 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -5344,11 +5633,11 @@ msgstr "" "Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " "odstanie." -#: actions/deletenotice.php:127 +#: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." @@ -5375,13 +5664,13 @@ msgstr "" "Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook " "najnowszym wpisem, musisz dać mu pozwolenie." -#: actions/grouplogo.php:155 +#: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." -#: actions/grouplogo.php:367 +#: actions/grouplogo.php:367 actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." @@ -5432,19 +5721,19 @@ msgstr "" "Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za " "pomocą identyfikatora [OpenID](%%doc.openid%%)." -#: actions/public.php:125 actions/public.php:133 +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" -#: actions/public.php:130 actions/public.php:138 +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 msgid "Public Stream Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" -#: actions/public.php:135 actions/public.php:143 +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 msgid "Public Stream Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" -#: actions/public.php:210 actions/public.php:241 +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5469,11 +5758,11 @@ msgstr "" "[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." "openidlogin%%)!)" -#: actions/register.php:432 actions/register.php:479 +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "Creative Commons Uznanie Autorstwa 3.0" -#: actions/register.php:433 actions/register.php:480 +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 msgid "" " except this private data: password, email address, IM address, and phone " "number." @@ -5482,10 +5771,12 @@ msgstr "" "numer telefonu." #: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 msgid "Created" msgstr "Utworzono" #: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5531,18 +5822,22 @@ msgid "FOAF for %s" msgstr "FOAF dla %s" #: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 msgid "Edit Avatar" msgstr "Edytuj awatar" #: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 msgid "Edit profile settings" msgstr "Edytuj ustawienia profilu" #: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 msgid "Edit" msgstr "Edytuj" #: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5556,7 +5851,7 @@ msgstr "" "obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" "doc.help%%%%))" -#: actions/smssettings.php:335 +#: actions/smssettings.php:335 actions/smssettings.php:347 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." @@ -5595,7 +5890,14 @@ msgstr "" "%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 msgid "No such user!" msgstr "Nie ma takiego użytkownika!" @@ -5626,7 +5928,7 @@ msgstr "" msgid "Search for more groups" msgstr "Znajdź więcej grup" -#: classes/Notice.php:138 classes/Notice.php:154 +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -5638,11 +5940,11 @@ msgstr "" msgid "Connect to SMS, Twitter" msgstr "Połącz z SMS, Twitterem" -#: lib/action.php:671 lib/action.php:721 +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 msgid "Badge" msgstr "Odznaka" -#: lib/command.php:113 lib/command.php:106 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5921,7 +6223,7 @@ msgstr "Znajdź stronę" msgid "More..." msgstr "Więcej..." -#: actions/all.php:80 +#: actions/all.php:80 actions/all.php:127 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -5929,7 +6231,7 @@ msgstr "" "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " "wysłał." -#: actions/all.php:85 +#: actions/all.php:85 actions/all.php:132 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -5938,7 +6240,7 @@ msgstr "" "Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " "lub wysłać coś samemu." -#: actions/all.php:87 +#: actions/all.php:87 actions/all.php:134 #, php-format msgid "" "You can try to [nudge %s](../%s) from his profile or [post something to his " @@ -5949,6 +6251,7 @@ msgstr "" "status_textarea=%s)." #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -5991,30 +6294,39 @@ msgstr "Odblokuj użytkownika w tej grupie" msgid "Conversation" msgstr "Rozmowa" -#: actions/deletenotice.php:115 +#: actions/deletenotice.php:115 actions/deletenotice.php:145 msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" #: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów! Maksymalnie %d." #: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" jest już używany. Spróbuj innego." #: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." #: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -6079,6 +6391,7 @@ msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." #: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -6097,15 +6410,15 @@ msgstr "" msgid "Database error blocking user from group." msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." -#: actions/groupdesignsettings.php:73 +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "Musisz być zalogowany, aby zmodyfikować grupę." -#: actions/groupdesignsettings.php:146 +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 msgid "Group design" msgstr "Wygląd grupy" -#: actions/groupdesignsettings.php:157 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -6113,28 +6426,32 @@ msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety koloró #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 msgid "Couldn't update your design." msgstr "Nie można zaktualizować wyglądu." #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 msgid "Unable to save your design settings!" msgstr "Nie można zapisać ustawień wyglądu!" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "Zapisano preferencje wyglądu." -#: actions/groupmembers.php:438 +#: actions/groupmembers.php:438 actions/groupmembers.php:441 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" @@ -6173,7 +6490,8 @@ msgstr "Użytkownik nie został zablokowany w grupie." msgid "Invites have been disabled." msgstr "Zaproszenia zostały wyłączone." -#: actions/joingroup.php:100 +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." @@ -6196,11 +6514,12 @@ msgstr "Nie można uzyskać wpisu członkostwa użytkownika %s w grupie %s" msgid "Can't make %s an admin for group %s" msgstr "Nie można uczynić %s administratorem grupy %s" -#: actions/newmessage.php:178 +#: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "Wysłano wiadomość" #: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -6209,40 +6528,40 @@ msgstr "" "Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " "konfiguracji." -#: actions/newnotice.php:128 scripts/maildaemon.php:185 +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format msgid " Try using another %s format." msgstr " Spróbuj innego formatu %s." -#: actions/newnotice.php:133 scripts/maildaemon.php:190 +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 #, php-format msgid "%s is not a supported filetype on this server." msgstr "%s nie jest obsługiwanym typem pliku na tym serwerze." -#: actions/newnotice.php:205 +#: actions/newnotice.php:205 lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." -#: actions/newnotice.php:208 +#: actions/newnotice.php:208 lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." -#: actions/newnotice.php:211 +#: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." msgstr "Plik został tylko częściowo wysłany." -#: actions/newnotice.php:214 +#: actions/newnotice.php:214 lib/mediafile.php:159 msgid "Missing a temporary folder." msgstr "Brak folderu tymczasowego." -#: actions/newnotice.php:217 +#: actions/newnotice.php:217 lib/mediafile.php:162 msgid "Failed to write file to disk." msgstr "Zapisanie pliku na dysku nie powiodło się." -#: actions/newnotice.php:220 +#: actions/newnotice.php:220 lib/mediafile.php:165 msgid "File upload stopped by extension." msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." @@ -6258,12 +6577,14 @@ msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." msgid "Somehow lost the login in saveFile" msgstr "W jakiś sposób zgubiono login w saveFile" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "Nie można przenieść pliku do katalogu docelowego." #: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie." @@ -6296,19 +6617,19 @@ msgstr "" "tego samego konta użytkownika. Tu można zarządzać powiązanymi " "identyfikatorami OpenID." -#: actions/othersettings.php:110 +#: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "Skracaj adresy URL za pomocą" -#: actions/othersettings.php:115 +#: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "Wyświetl ustawienia wyglądu profilu" -#: actions/othersettings.php:116 +#: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "Wyświetl lub ukryj ustawienia wyglądu profilu." -#: actions/public.php:82 +#: actions/public.php:82 actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" msgstr "Poza ograniczeniem strony (%s)" @@ -6334,7 +6655,7 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który coś wyśle!" -#: actions/public.php:245 +#: actions/public.php:245 actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -6383,11 +6704,11 @@ msgstr "Przywrócenie hasła" msgid "Sorry, invalid invitation code." msgstr "Przepraszamy, nieprawidłowy kod zaproszenia." -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" msgstr "Zasubskrybuj zdalnego użytkownika" -#: actions/replies.php:179 +#: actions/replies.php:179 actions/replies.php:198 #, php-format msgid "" "This is the timeline showing replies to %s but %s hasn't received a notice " @@ -6396,7 +6717,7 @@ msgstr "" "To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " "nie otrzymał jeszcze wpisów wymagających jego uwagi." -#: actions/replies.php:184 +#: actions/replies.php:184 actions/replies.php:203 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -6405,7 +6726,7 @@ msgstr "" "Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " "lub [dołączyć do grup](%%action.groups%%)." -#: actions/replies.php:186 +#: actions/replies.php:186 actions/replies.php:205 #, php-format msgid "" "You can try to [nudge %s](../%s) or [post something to his or her attention]" @@ -6419,7 +6740,7 @@ msgstr "" msgid "%s's favorite notices, page %d" msgstr "Ulubione wpisy użytkownika %s, strona %d" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -6428,7 +6749,7 @@ msgstr "" "na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " "trochę światła." -#: actions/showfavorites.php:172 +#: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -6448,30 +6769,31 @@ msgstr "" "[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " "interesującego, aby chcieli dodać to do swoich ulubionych. :)" -#: actions/showfavorites.php:226 +#: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." msgstr "To jest sposób na współdzielenie tego, co chcesz." #: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:330 actions/tag.php:84 +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:337 +#: actions/showgroup.php:337 actions/showgroup.php:340 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:446 +#: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6484,7 +6806,7 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:474 +#: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" msgstr "Administratorzy" @@ -6502,13 +6824,13 @@ msgstr " ze znacznikiem %s" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" -#: actions/showstream.php:350 +#: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" "To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." -#: actions/showstream.php:355 +#: actions/showstream.php:355 actions/showstream.php:449 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -6516,7 +6838,7 @@ msgstr "" "Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " "teraz jest dobry czas, aby zacząć. :)" -#: actions/showstream.php:357 +#: actions/showstream.php:357 actions/showstream.php:451 #, php-format msgid "" "You can try to nudge %s or [post something to his or her attention](%%%%" @@ -6525,7 +6847,7 @@ msgstr "" "Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " "uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." -#: actions/showstream.php:393 +#: actions/showstream.php:393 actions/showstream.php:492 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6558,7 +6880,7 @@ msgstr "" "Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" "(%%%%action.register%%%%) i zostaniesz pierwszym?" -#: actions/subscriptions.php:115 +#: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -6575,29 +6897,31 @@ msgstr "" "obserwujesz." #: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format msgid "%s is not listening to anyone." msgstr "Użytkownik %s nie obserwuje nikogo." -#: actions/tag.php:77 +#: actions/tag.php:77 actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/tag.php:91 +#: actions/tag.php:91 actions/tag.php:98 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Kanał wpisów dla znacznika %s (Atom)" -#: actions/twitapifavorites.php:125 +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 msgid "This status is already a favorite!" msgstr "Ten status jest już ulubiony!" -#: actions/twitapifavorites.php:179 +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 msgid "That status is not a favorite!" msgstr "Ten status nie jest ulubiony!" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 msgid "Could not determine source user." msgstr "Nie można określić użytkownika źródłowego." @@ -6605,16 +6929,17 @@ msgstr "Nie można określić użytkownika źródłowego." msgid "Target user not specified." msgstr "Nie podano użytkownika docelowego." -#: actions/twitapifriendships.php:221 +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 msgid "Could not find target user." msgstr "Nie można znaleźć użytkownika docelowego." -#: actions/twitapistatuses.php:322 +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s/aktualizacje wspominające %2$s" -#: actions/twitapitags.php:74 +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" @@ -6623,11 +6948,11 @@ msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" msgid "Import my Friends Timeline." msgstr "Zaimportuj oś czasu przyjaciół." -#: actions/userauthorization.php:158 +#: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "Licencja" -#: actions/userauthorization.php:179 +#: actions/userauthorization.php:179 actions/userauthorization.php:212 msgid "Reject this subscription" msgstr "Odrzuć tę subskrypcję" @@ -6656,7 +6981,7 @@ msgstr "Użytkownik %s nie jest członkiem żadnej grupy." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." -#: classes/File.php:127 +#: classes/File.php:127 classes/File.php:137 #, php-format msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " @@ -6665,37 +6990,38 @@ msgstr "" "Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " "Spróbuj wysłać mniejszą wersję." -#: classes/File.php:137 +#: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" "Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." -#: classes/File.php:145 +#: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" "d bajty." -#: classes/Notice.php:139 +#: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/User.php:319 +#: classes/User.php:319 classes/User.php:327 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s!" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 msgid "Design" msgstr "Wygląd" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "Wygląd profilu" -#: lib/action.php:712 +#: lib/action.php:712 lib/action.php:727 msgid "TOS" msgstr "TOS" @@ -6784,15 +7110,15 @@ msgstr "Przywróć domyślne ustawienia" msgid "Save design" msgstr "Zapisz wygląd" -#: lib/designsettings.php:378 +#: lib/designsettings.php:378 lib/designsettings.php:369 msgid "Bad default color settings: " msgstr "Błędne domyślne ustawienia koloru: " -#: lib/designsettings.php:474 +#: lib/designsettings.php:474 lib/designsettings.php:465 msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." -#: lib/groupeditform.php:181 +#: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" @@ -6923,15 +7249,15 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " "Twoich oczu." -#: lib/noticeform.php:154 +#: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" msgstr "Załącz" -#: lib/noticeform.php:158 +#: lib/noticeform.php:158 lib/noticeform.php:184 msgid "Attach a file" msgstr "Załącz plik" -#: lib/noticelist.php:436 +#: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "w rozmowie" @@ -6939,7 +7265,7 @@ msgstr "w rozmowie" msgid "User ID" msgstr "Identyfikator użytkownika" -#: lib/searchaction.php:156 +#: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "Znajdź w pomocy" @@ -6964,3 +7290,590 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " "szesnastkowych." + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nie ma takiego znacznika." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bezpośrednia wiadomość do użytkownika %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Jesteś już członkiem tej grupy" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nie można dołączyć użytkownika %s do grupy %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Nie jesteś członkiem tej grupy." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nie można usunąć użytkownika %s z grupy %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupy %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupy %s są członkiem" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Działania grupy" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Usunięto awatar." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, fuzzy, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nieobsługiwany format pliku obrazu." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Zdjęcie" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Obserwowany użytkownik nie istnieje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Brak upoważnienia." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Nieznana wersja protokołu OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Nie ma takiego wpisu." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Utracono plik." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ta strona nie jest dostępna w " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " +"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." +"openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Zawartość" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Opisz się i swoje zainteresowania w 140 znakach" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Opisz się i swoje " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." + +#: actions/register.php:336 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " +"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " +"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." +"openidlogin%%)!)" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nie można uzyskać tokenu żądana." + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Kanał wpisów dla %s (RSS 1.0)" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Kanał wpisów dla %s (RSS 2.0)" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Kanał wpisów dla %s (Atom)" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Wiadomość do użytkownika %1$s na %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Kanał dla znajomych użytkownika %s (Atom)" + +#: actions/showfavorites.php:211 +#, fuzzy, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " +"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "FOAF dla %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Wysłano wpis" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ta strona nie jest dostępna w " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " +"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " +"naciśnij \"Odrzuć\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nie można odczytać adresu URL awatara \"%s\"" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Błędny typ obrazu dla \"%s\"" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Nie można przekierować do serwera: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencja oprogramowania StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Wysłano szturchnięcie" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpowiedz na ten wpis" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem podczas zapisywania wpisu." + +#: lib/command.php:587 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Polecenia:\n" +"on - włącza powiadomienia\n" +"off - wyłącza powiadomienia\n" +"help - wyświetla tę pomoc\n" +"follow - subskrybuje użytkownika\n" +"leave - rezygnuje z subskrypcji użytkownika\n" +"d - bezpośrednia wiadomość do użytkownika\n" +"get - uzyskuje ostatni wpis użytkownika\n" +"whois - uzyskuje informacje o profilu użytkownika\n" +"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" +"stats - uzyskuje Twoje statystyki\n" +"stop - to samo co \"off\"\n" +"quit - to samo co \"off\"\n" +"sub - to samo co \"follow\"\n" +"unsub - to samo co \"leave\"\n" +"last - to samo co \"get\"\n" +"on - jeszcze nie zaimplementowano.\n" +"off - jeszcze nie zaimplementowano.\n" +"nudge - jeszcze nie zaimplementowano.\n" +"invite - jeszcze nie zaimplementowano.\n" +"track - jeszcze nie zaimplementowano.\n" +"untrack - jeszcze nie zaimplementowano.\n" +"track off - jeszcze nie zaimplementowano.\n" +"untrack all - jeszcze nie zaimplementowano.\n" +"tracks - jeszcze nie zaimplementowano.\n" +"tracking - jeszcze nie zaimplementowano.\n" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Brak kodu potwierdzającego." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Zaloguj się na stronę" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Wybierz operatora" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Opisz grupę lub temat w 140 znakach" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Opisz grupę lub temat w 140 znakach" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Brak identyfikatora wpisu" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Adres URL Twojego wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tekst Twojego wpisu:\n" +"\n" +"%4$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%5$s\n" +"\n" +"Z poważaniem,\n" +"%6$s\n" + +#: lib/mail.php:611 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " z " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Nie można określić użytkownika źródłowego." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Usuń wpis" diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index e6168a340f270aebd89f73d0e1aaefc3904df0fa..6169cb2ccf5d172e36aef47cf11ce0d33bd66c5c 100644 GIT binary patch delta 9605 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

&wv)Ux{kYvX0q7#I23Owy{T{NC6eV^OQ+MO1?` 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 delta 20752 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\n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -80,6 +82,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -96,25 +99,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Публичная Лента" @@ -124,34 +130,48 @@ msgstr "%s Публичная Лента" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и друзья" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s общая лента" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s статус" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s хронология" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s обновлен для всех!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -159,16 +179,18 @@ msgstr "" "(Вам сразу же послано сообщение по электронной почте, с инструкциями по " "тому, как подтвердить свой электронный адрес.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** это сервис микроблогинга созданный для Вас при помощи " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** это сервис микроблогинга созданный для Вас при помощи [%%" +"site.broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** - сервис микроблогинга. " @@ -180,31 +202,35 @@ msgstr ". Создатель определяется по полному име #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 латинских строчных букв или цифр, без пробелов" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или больше знаков" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или более символов, и не забывайте его!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 или более символов. Обязательное поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -214,6 +240,7 @@ msgstr "" "подтвердить %s для рассылки сообщений Вам." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -249,7 +276,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Метод API не найден!" @@ -272,16 +326,23 @@ msgstr "Метод API не найден!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Метод API реконструируется." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "О проекте" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Принять" @@ -292,6 +353,9 @@ msgstr "Принять" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Добавить" @@ -309,27 +373,29 @@ msgstr "Добавить или удалить OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адрес" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Адреса друзей, которых ты хочешь пригласить (по одному на строчку)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Все подписки." #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Все обновления для %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Все обновления соответствующие поисковому термину \"%s\"" @@ -339,30 +405,37 @@ msgstr "Все обновления соответствующие поиско #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Уже авторизован." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Уже подписан!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Вы уверены, что хотите удалить эту запись?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизованная подписка" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматический повторный вход. Не для публичных компьютеров!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Автоматически подписываться на всех, кто подписался на меня" @@ -370,15 +443,19 @@ msgstr "Автоматически подписываться на всех, к #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватар обновлён." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -389,6 +466,7 @@ msgstr "" "контактный список?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -397,7 +475,7 @@ msgstr "" "спама!), там будут дальнейшие инструкции." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "В ожидании подтверждения данного номера телефона." @@ -408,6 +486,8 @@ msgstr "Ранее »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Био" @@ -415,16 +495,18 @@ msgstr "Био" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Не удаётся удалить эту запись." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не удается прочитать URL аватары из '%s'" @@ -432,6 +514,8 @@ msgstr "Не удается прочитать URL аватары из '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Не удаётся сохранить новый пароль." @@ -439,31 +523,34 @@ msgstr "Не удаётся сохранить новый пароль." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Отменить" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не удаётся подтвердить OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Не удаётся стандартизировать этот Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Изменить" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Изменить электронный адрес" @@ -473,11 +560,12 @@ msgid "Change password" msgstr "Изменить пароль" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Изменить Ваш пароль" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Настройки Ваших установок профиля" @@ -487,6 +575,9 @@ msgstr "Настройки Ваших установок профиля" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Подтвердить" @@ -499,12 +590,14 @@ msgstr "Подтвердить адрес" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Подтверждение отменено." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код подтверждения" @@ -513,7 +606,8 @@ msgstr "Код подтверждения" msgid "Confirmation code not found." msgstr "Код подтверждения не найден." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -539,8 +633,8 @@ msgstr "" "вы сможете после этого отправлять записи через мессенджеры.\n" "* [Искать людей](%%%%action.peoplesearch%%%%), которых вы возможно знаете " "или с которыми разделяете одни и те же интересы.\n" -"* Не нашли друзей или знакомых? [Пригласите их](%%%%action.invite%%%%) на " -"%%%%site.name%%%%, подпишитесь на них и будьте всегда в курсе.\n" +"* Не нашли друзей или знакомых? [Пригласите их](%%%%action.invite%%%%) на %%%" +"%site.name%%%%, подпишитесь на них и будьте всегда в курсе.\n" "* Обновить ваши [профильные настройки](%%%%action.profilesettings%%%%) чтобы " "больше рассказать другим о себе.\n" "* Прочитать [документацию](%%%%doc.help%%%%) чтобы поподробнее узнать об " @@ -550,20 +644,24 @@ msgstr "" "удовольствие от использования данного сервиса!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Соединить" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Соединить с существующей записью" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакты" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Не удаётся создать OpenID-форму: %s " @@ -571,36 +669,40 @@ msgstr "Не удаётся создать OpenID-форму: %s " #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не удается включить %s в список поддержки, он уже в Вашем списке." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" "Не удаётся следовать пользователю, т.к. такого пользователя не существует." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Не удаётся перенаправить на сервер: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Не удаётся сохранить информацию об аватаре" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Не удаётся сохранить новую информацию профиля" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Не удаётся подписать других на Вашу ленту." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Подписка неудачна." @@ -620,15 +722,17 @@ msgstr "Не удаётся преобразовать запросы в дос #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Не удаётся удалить подписку." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Нет статусов." @@ -641,29 +745,38 @@ msgstr "Не удаётся получить запрос." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не удаётся вставить код подтверждения." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Не удаётся сохранить профиль." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Не удаётся обновить пользователя для автоподписки." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Не удаётся обновить пользовательскую запись." @@ -679,44 +792,50 @@ msgstr "Не удаётся обновить пользовательскую з #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Не удаётся обновить пользователя." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Создать" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Создать нового пользователя с таким именем." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Создать новую учетную запись" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Создать новую учетную запись для OpenID, у которого уже есть пользователь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" "Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Подтверждённый в настоящее время электронный адрес." @@ -725,23 +844,27 @@ msgid "Currently" msgstr "Сейчас" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Ошибка баз данных при вставке ответа для %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Удалить запись" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опиши себя и свои увлечения при помощи 140 символов" @@ -749,11 +872,13 @@ msgstr "Опиши себя и свои увлечения при помощи 1 #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Электронный адрес" @@ -763,39 +888,43 @@ msgid "Email Settings" msgstr "Настройка почты" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Такой электронный адрес уже задействован." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Подтверждение электронного адреса" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Электронный адрес вида \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Почтовый адрес" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Введите имя или электронный адрес." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Введите код, который вы получили по телефону." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Ошибка авторизации входа" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Ошибка при соединении пользователя с OpenID." @@ -806,39 +935,46 @@ msgstr "Ошибка при соединении пользователя." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Ошибка при вставке аватара" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Ошибка при вставке нового профиля" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Ошибка вставки удалённого профиля" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Ошибка сохранения подтверждённого адреса." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Ошибка сохранения удалённого профиля" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Ошибка сохранения текущего профиля." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Ошибка сохранения текущего пользователя." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Ошибка сохранения пользователя; неверное имя." @@ -847,6 +983,9 @@ msgstr "Ошибка сохранения пользователя; неверн #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Ошибка в установках пользователя." @@ -857,6 +996,7 @@ msgstr "Ошибка обновления профиля" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Ошибка обновления удалённого профиля" @@ -866,33 +1006,36 @@ msgid "Error with confirmation code." msgstr "Ошибка, связанная с кодом подтверждения." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Существующее имя" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧаВо" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Неудача при обновлении аватара." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Лента друзей %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Лента ответов %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Лента тегов %s" @@ -907,7 +1050,7 @@ msgstr "Найти запись по содержимому" msgid "Find people on this site" msgstr "Найти человека на этом сайте" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -920,6 +1063,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Полное имя" @@ -928,23 +1076,33 @@ msgstr "Полное имя" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помощь" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Моё" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Главная" @@ -952,21 +1110,27 @@ msgstr "Главная" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Я хочу отправлять записи по электронной почте." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-адрес" @@ -976,7 +1140,7 @@ msgid "IM Settings" msgstr "IM-установки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -984,7 +1148,7 @@ msgstr "" "Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы " "соединить их с вашим OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -992,7 +1156,7 @@ msgstr "" "Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже " "и нажмите на кнопку \"Добавить\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1003,25 +1167,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Входящий электронный адрес" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Входящий электронный адрес удалён." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Некорректный старый пароль" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Некорректное имя или пароль." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1030,30 +1200,31 @@ msgstr "" "указали при регистрации вашего аккаунта." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неверный URL-адрес аватара '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Неверный электронный адрес: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Неверная домашняя страничка для '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неверный URL лицензии для '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Неверный контент записи" @@ -1068,13 +1239,13 @@ msgid "Invalid notice url" msgstr "Неверный URL записи" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неверный URL профиля для '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неверный URL профиля (плохой формат)" @@ -1092,45 +1263,53 @@ msgstr "Неверный размер." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Неверное имя или пароль." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Приглашение(я) отослано(ы)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Приглашение(я) отослано(ы) следующим адресатам:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Пригласить" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Пригласить новых пользователей" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Этот сервис работает при помощи [StatusNet](http://status.net/) - программного " -"обеспечения для микроблогинга, версии %s, доступного под лицензией [GNU " -"Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-" -"3.0.html)." +"Этот сервис работает при помощи [StatusNet](http://status.net/) - " +"программного обеспечения для микроблогинга, версии %s, доступного под " +"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Этот Jabber ID уже используется другим пользователем." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1141,12 +1320,14 @@ msgstr "" "мессенджере или в GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Язык" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Слишком длинный язык (более 50 символов). " @@ -1155,7 +1336,15 @@ msgstr "Слишком длинный язык (более 50 символов). #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Месторасположение" @@ -1164,7 +1353,12 @@ msgstr "Месторасположение" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)." @@ -1173,44 +1367,52 @@ msgstr "Слишком длинное месторасположение (мак #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Вход" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Вход при помощи [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? " -"[Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте " -"авторизоваться при помощи [OpenID](%%action.openidlogin%%). " +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Выход" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Полное имя, предпочтительно Ваше настоящее имя" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Потеряли или забыли пароль?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создать новый электронный адрес для постинга здесь; отменить один из старых." @@ -1222,16 +1424,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Управление процессом получения электронного адреса с %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Регистрация" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог от %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1244,42 +1448,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мои тексты и файлы находятся под лицензией" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Новое" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Новый электронный адрес для постинга %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Новое имя" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Новая запись" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Новый пароль" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новый пароль успешно сохранён. Вы авторизовались." @@ -1289,7 +1501,13 @@ msgstr "Новый пароль успешно сохранён. Вы автор #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Имя" @@ -1298,7 +1516,12 @@ msgstr "Имя" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." @@ -1307,48 +1530,59 @@ msgstr "Такое имя уже используется. Попробуйте #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Такое имя недопустимо." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Имя пользователя, которому Вы хотите следовать" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Имя или электронный адрес" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Нет" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Не Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Не авторизованный запрос!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Провайдер не выбран." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Код не введён" @@ -1360,11 +1594,15 @@ msgstr "Нет кода подтверждения." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Нет контента!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Нет электронного адреса." @@ -1373,7 +1611,9 @@ msgid "No id." msgstr "Нет идентификатора." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Нет входящего электронного адреса." @@ -1384,6 +1624,7 @@ msgstr "Нет имени представленного удалённым се #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Нет имени." @@ -1391,12 +1632,14 @@ msgstr "Нет имени." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Нет подтверждения отказа." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Нет номера телефона." @@ -1406,7 +1649,8 @@ msgid "No profile URL returned by server." msgstr "Нет URL профиля, который вернул сервер." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Нет зарегистрированных электронных адресов для этого пользователя." @@ -1418,7 +1662,7 @@ msgstr "Запросы не найдены!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Нет результатов." @@ -1429,12 +1673,16 @@ msgstr "Нет размера." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Нет статуса с таким ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не найдено статуса с таким ID." @@ -1444,13 +1692,15 @@ msgid "No such OpenID." msgstr "Нет такого OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Нет такого документа." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Нет такой записи." @@ -1488,12 +1738,22 @@ msgstr "Нет такой подписки" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Нет такого пользователя." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Нет пользователя с таким электронным адресом или именем." @@ -1507,32 +1767,38 @@ msgid "Not a recovery code." msgstr "Нет кода восстановления." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Незарегистрированный пользователь." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неверный код Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неверный код OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Неверный электронный адрес" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неверный электронный адрес." @@ -1540,6 +1806,11 @@ msgstr "Неверный электронный адрес." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неверное имя." @@ -1559,7 +1830,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неверный URL профиля (не YADIS-документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Не является изображением или разрушенный файл." @@ -1570,11 +1842,13 @@ msgstr "Не авторизовано." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Неожиданный ответ!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не найдено" @@ -1590,11 +1864,15 @@ msgstr "Не найдено" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не авторизован." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не подписан!" @@ -1611,39 +1889,44 @@ msgid "Notice feed for %s" msgstr "Лента записей для %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Запись без профиля" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Записи" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Записи, помеченные %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Старый пароль" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Установки OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоподдержка OpenID" @@ -1651,29 +1934,34 @@ msgstr "Автоподдержка OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID вход" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL для OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Вход при помощи OpenID отменён." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Вход при помощи OpenID неудачен: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Неверный OpenID: %s" @@ -1689,11 +1977,12 @@ msgid "OpenID settings" msgstr "Установки OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Можно добавить к приглашению личное сообщение." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Частичная загрузка." @@ -1703,34 +1992,46 @@ msgstr "Частичная загрузка." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Пароль" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Пароль и его подтверждение не совпадают." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Пароль должен быть длиной не менее 6 символов." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Запрошено восстановление пароля" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Пароль сохранён." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Пароли не совпадают." @@ -1750,14 +2051,17 @@ msgid "People search" msgstr "Поиск людей" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Личное" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Личное сообщение" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Номер телефона, без пробелов, с кодом зоны" @@ -1768,11 +2072,11 @@ msgid "" "click \"Cancel\"." msgstr "" "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите " -"\"Отказ\"." +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." @@ -1781,7 +2085,9 @@ msgstr "Публиковать запись, когда мой Jabber/GTalk - с #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Предпочтения" @@ -1790,42 +2096,52 @@ msgstr "Предпочтения" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Предпочтения сохранены." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Любимый язык" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Пользовательское соглашение" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профиль" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL профиля" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Настройки профиля" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Неизвестный профиль" @@ -1834,17 +2150,19 @@ msgid "Public Stream Feed" msgstr "Лента публичного потока" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Общая лента" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Опубликовать MicroID для моего электронного адреса." @@ -1854,12 +2172,14 @@ msgid "Recent Tags" msgstr "Свежие теги" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Восстановление" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Восстановление пароля" @@ -1872,37 +2192,45 @@ msgstr "Код восстановления неизвестного польз #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Регистрация недопустима." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Регистрация успешна!" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Отбросить" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запомнить меня" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Удаление профиля как несоответствующего" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Подписаться на пользователя" @@ -1916,6 +2244,9 @@ msgstr "Подписаться на пользователя" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Убрать" @@ -1924,7 +2255,7 @@ msgstr "Убрать" msgid "Remove OpenID" msgstr "Убрать OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1933,34 +2264,41 @@ msgstr "" "хотите удалить этот OpenID, то сначала добавьте ещё один." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Ответы" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Ответы для %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Переустановить" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Переустановить пароль" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Номер телефона для СМС" @@ -1969,17 +2307,18 @@ msgstr "Номер телефона для СМС" msgid "SMS Settings" msgstr "Установки СМС" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Подтверждение СМС" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Тот же пароль, что и выше" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Тот же пароль что и сверху. Обязательно." @@ -1992,12 +2331,21 @@ msgstr "Тот же пароль что и сверху. Обязательно. #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Поиск" @@ -2007,7 +2355,7 @@ msgid "Search Stream Feed" msgstr "Лента поискового потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2016,7 +2364,7 @@ msgstr "" "Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " "ставьте пробелы. Минимальная длина слова — 3 буквы." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2026,33 +2374,38 @@ msgstr "" "Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Выбор провайдера" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "ОК" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Посылать электронные письма на этот адрес для постинга новых записей." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Уведомлять меня о новых подписчиках по почте." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Посылать мне записи через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2061,16 +2414,19 @@ msgstr "" "по пересылке." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Настройки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Настройки сохранены." @@ -2090,27 +2446,32 @@ msgid "Something weird happened." msgstr "Случилось что-то странное." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Простите, входящих писем нет." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Простите, это не Ваш входящий электронный адрес." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Исходник" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Записанный OpenID не найден." @@ -2118,24 +2479,28 @@ msgstr "Записанный OpenID не найден." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Подписаться" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Подписчики" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Подписка авторизована" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Подписка отменена" @@ -2143,28 +2508,35 @@ msgstr "Подписка отменена" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Подписки" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Теги" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Поиск текста" @@ -2184,6 +2556,7 @@ msgid "That confirmation code is not for you!" msgstr "Это не Ваш код подтверждения!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Этот электронный адрес уже задействован другим пользователем." @@ -2193,63 +2566,73 @@ msgid "That file is too big." msgstr "Это слишком большой файл." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Это уже Ваш Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Это уже Ваш электронный адрес." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Это уже ваш номер телефона." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Это не Ваш Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Это не Ваш электронный адрес." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Это не Ваш номер телефона." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Это неверный IM-адрес." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Это неверный номер подтверждения." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Этот телефонный номер уже задействован другим пользователем." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Слишком длинная запись. Максимальная длина - 255 знаков." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрес \"%s\" подтвержден для вашего аккаунта." @@ -2258,11 +2641,14 @@ msgstr "Адрес \"%s\" подтвержден для вашего аккау #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адрес удалён." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2271,7 +2657,8 @@ msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " "о том, как авторизовать подписку. Ваш подписочный купон: " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2281,35 +2668,40 @@ msgstr "" "чтобы полностью отказаться от подписки." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Это пользователи, которые читают записи %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Это пользователи, которые читают ваши записи." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Это пользователи, записи которых читает %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Это пользователи, записи которых вы читаете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Это люди, которые уже являются пользователями, и на которых Вы подписались " "автоматически:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2318,7 +2710,7 @@ msgstr "" "подтверждения для перехода на сайт Вашего OpenID-провайдера. " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2333,6 +2725,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Этот метод требует POST или DELETE." @@ -2341,25 +2736,37 @@ msgstr "Этот метод требует POST или DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Этот метод требует POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страница недоступна для того типа, который Вы задействовали." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часовой пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Часовой пояс не выбран." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2370,18 +2777,21 @@ msgstr "" "[зарегистрировать](%%action.register%%) новый аккаунт." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Надо представить два имени пользователя или кода." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес твоей страницы, дневника или профиля на другом портале" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" @@ -2393,15 +2803,22 @@ msgstr "Адрес URL твоего профиля на другом подхо #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Нетиповое подтверждение формы." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Нетиповая переустановка пароля." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Неизвестное действие" @@ -2432,38 +2849,47 @@ msgstr "Отписаться" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдерживаемая версия OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Неподдерживаемый формат файла изображения." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Обновления по СМС" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Загрузить" @@ -2484,12 +2910,15 @@ msgid "Upload a new profile image" msgstr "Загрузить новое профильное изображение" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Нужна только для обновлений, осведомлений и восстановления пароля." @@ -2513,11 +2942,16 @@ msgstr "Пользователь отслеживает несуществующ #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "У пользователя нет профиля." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Имя пользователя." @@ -2526,29 +2960,33 @@ msgid "User not found." msgstr "Пользователь не найден." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "В каком часовом поясе Вы обычно находитесь?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Что нового, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Где вы находитесь, например «Город, область, страна»" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Неверный тип изображения для '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Неверный размер изображения для '%s'" @@ -2556,7 +2994,9 @@ msgstr "Неверный размер изображения для '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Да" @@ -2579,11 +3019,12 @@ msgid "You are already logged in!" msgstr "Вы уже авторизованы!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Вы уже подписаны на пользователя:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Вы не являетесь другом для этого пользователя." @@ -2604,22 +3045,25 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " +msgstr "" +"Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk " -"[онлайн-мессенджер](%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2630,23 +3074,25 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Вы можете использовать локальную подписку!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " "соглашения." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Вы не посылали нам этот профиль." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2668,11 +3114,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Вы не можете удалять статус других пользователей." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2680,6 +3128,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2687,20 +3136,21 @@ msgstr "" "Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " "зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Вы идентифицированны. Введите новый пароль ниже." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Адрес (URL) Вашего OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ваше имя на этом сервере или электронный адрес регистрации." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2710,47 +3160,57 @@ msgstr "" "помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " "аккаунтом OpenIDs отсюда." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "пару секунд назад" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "около дня назад" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "около минуты назад" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "около месяца назад" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "около года назад" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "около часа назад" @@ -2772,12 +3232,14 @@ msgid "reply" msgstr "ответить" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "повторить пароль сверху" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "неподдерживаемый тип файла" @@ -2798,6 +3260,26 @@ msgstr "Сюда" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -2806,6 +3288,7 @@ msgid "This notice is not a favorite!" msgstr "Эта запись не входит в число ваших любимых записей!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Не удаётся удалить любимую запись." @@ -2813,26 +3296,32 @@ msgstr "Не удаётся удалить любимую запись." msgid "Favor" msgstr "Пометить" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " "приватное сообщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Эта запись уже входит в число любимых!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." @@ -2842,11 +3331,13 @@ msgstr "Нелюбимое" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Любимые записи %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Лента любимых записей %s" @@ -2889,33 +3380,44 @@ msgid "Login with your username and password. " msgstr "Вход с вашим ником и паролем." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Нет адресата." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Вы не можете послать сообщение этому пользователю." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Нет такого пользователя" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Новое сообщение" @@ -2973,6 +3475,11 @@ msgstr "Вы можете обновить здесь Вашу личную пр #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Пользователь без соответствующего профиля" @@ -3001,6 +3508,8 @@ msgid "New password successfully saved. " msgstr "Новый пароль успешно сохранён." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Пароль должен быть длиной не менее 6 символов." @@ -3022,12 +3531,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Чтобы подписаться, вы должны [авторизоваться](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Лента любимых записей от %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не удаётся восстановить любимые записи." @@ -3035,7 +3547,7 @@ msgstr "Не удаётся восстановить любимые записи msgid "No such message." msgstr "Нет такого сообщения." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Только отправитель и получатель могут читать это сообщение." @@ -3059,53 +3571,72 @@ msgid "Mobile carrier for your phone. " msgstr "Ваш мобильный оператор." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Прямые сообщения для %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Все прямые сообщения посланные для %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Прямые сообщения посланные Вами" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Все прямые сообщения от %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Отсутствует текст сообщения!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Получатель не найден." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не удаётся посылать прямые сообщения пользователям, которые не являются " "Вашими друзьями." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Любимое от %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s обновлённые любимые записи от %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s добавил вашу запись в состав своих любимых" @@ -3128,14 +3659,17 @@ msgstr "" "на Твиттер," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Установки Твиттера" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Твиттер аккаунт" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Текущий проверенный аккаунт на Твиттере." @@ -3144,6 +3678,7 @@ msgid "Twitter Username" msgstr "Имя на Твиттере" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без пробелов, пожалуйста." @@ -3152,18 +3687,22 @@ msgid "Twitter Password" msgstr "Пароль на Твиттере" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматически отправлять мои записи на Твиттер." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Отправлять локальные \"@\"-реплики на Твиттер." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Подписаться на моих Твиттер-друзей здесь." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3172,6 +3711,7 @@ msgstr "" "и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Не удаётся подтвердить Ваши данные по Твиттеру!" @@ -3182,33 +3722,43 @@ msgstr "Не удаётся подтвердить данные по аккау #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Установки Твиттера сохранены." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Это не ваш аккаунт на Твиттере." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Не удаётся удалить Твиттер-пользователя." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Твиттер аккаунт удалён." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Не удаётся сохранить предпочтения Твиттера." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Предпочтения Твиттера сохранены." @@ -3225,18 +3775,19 @@ msgid "The subscription has been rejected, but no " msgstr "Эта подписка удалена, но не" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Команда исполнена" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Команда завершена" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Команда неудачна" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Простите, эта команда ещё не выполнена." @@ -3246,89 +3797,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Подписки: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "У пользователя нет записей" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Запись помечена как любимая." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Полное имя: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "О пользователе: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Прямое сообщение для %s послано" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ошибка при отправке прямого сообщения." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Определите имя пользователя при подписке на" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Подписано на %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Определите имя пользователя для отписки от" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Отписано от %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Оповещение отсутствует." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Нет оповещения." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Есть оповещение." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Есть оповещение." @@ -3336,11 +3909,11 @@ msgstr "Есть оповещение." msgid "Commands:\n" msgstr "Команды:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Не удаётся вставить сообщение." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." @@ -3357,7 +3930,7 @@ msgstr "" "У Вас новый адрес постинга на %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Новое приватное сообщение от %s" @@ -3371,7 +3944,7 @@ msgstr "" "%1$s (%2$s) послал Вам приватное сообщение:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Только сам пользователь может читать собственный почтовый ящик." @@ -3380,31 +3953,39 @@ msgid "This form should automatically submit itself. " msgstr "Это форма для автоматического подтверждения." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Любимое" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Любимые записи %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Входящие" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Ваши входящие сообщения" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Исходящее" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Ваши исходящие сообщения" @@ -3417,14 +3998,19 @@ msgid "Twitter integration options" msgstr "Опции интеграции с Твиттером" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Для" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Сообщение не удаётся разобрать." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s и друзья, страница %d" @@ -3434,21 +4020,31 @@ msgid "You can upload your personal avatar." msgstr "Тут вы можете загрузить свой аватар." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Настройки аватара" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Обрезать" @@ -3465,34 +4061,43 @@ msgid "There was a problem with your session token. " msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Подберите нужный квадратный ракурс дла вашего аватара" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Потеряна информация о файле." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Потерян файл." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Неподдерживаемый тип файла" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Профиль не определен." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Нет профиля с таким ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Заблокировать пользователя." @@ -3500,11 +4105,11 @@ msgstr "Заблокировать пользователя." msgid "Are you sure you want to block this user? " msgstr "Вы уверены, что хотите заблокировать этого пользователя?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Вы уже заблокировали этого пользователя." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Не удаётся сохранить информацию о блокировании." @@ -3523,38 +4128,56 @@ msgstr "" msgid "Add to favorites" msgstr "Добавить в любимые" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Изменить информацию о группе %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Входящие должны быть включены для работы групп" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Вы должны авторизоваться, чтобы создать новую группу." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Нет названия группы" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Нет такой группы" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Заполните информацию о группе в следующие поля" @@ -3565,14 +4188,15 @@ msgstr "" "пробелов" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "Слишком длинное описание (максимум 140 символов)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Настройки сохранены" @@ -3591,7 +4215,8 @@ msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" "Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." @@ -3606,7 +4231,7 @@ msgstr "" "Код подтверждения выслан на ваш электронный адрес, который Вы добавили. " "Проверьте входящие (а так же папку для спама)." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Ошибка сервера - невозможно достать пользователя!" @@ -3622,51 +4247,66 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "Разрешить %s обновлять мой Facebook статус" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропустить" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Нет записей!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Пагинация" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Сюда" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Туда" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Спасибо за приглашения друзьям использовать %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Приглашения отосланы следующим адресатам:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Вас пригласили на %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Пригласите ваших друзей использовать %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Друзья уже использующие %s" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Отправить приглашения" @@ -3711,12 +4351,14 @@ msgstr "" msgid "Sync preferences" msgstr "Настройки синхронизации" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Разлюбить" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярные записи" @@ -3730,7 +4372,8 @@ msgid "The most popular notices on the site right now." msgstr "Самые популярные записи на %%site.name%% на текущий момент." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Особые пользователи" @@ -3743,18 +4386,20 @@ msgstr "Особые пользователи, страница %d" #, php-format msgid "A selection of some of the great users on %s" msgstr "" -"Список наиболее активных, знаменитых и уважаемых пользователей на " -"%%%%site.name%%%%" +"Список наиболее активных, знаменитых и уважаемых пользователей на %%%%site." +"name%%%%" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Этот пользователь заблокировал вас на его подписку." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Нет ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Логотип группы" @@ -3762,11 +4407,13 @@ msgstr "Логотип группы" msgid "You can upload a logo image for your group." msgstr "Тут вы можете загрузить логотип для группы." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Логотип обновлён." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Неудача при обновлении логотипа." @@ -3785,7 +4432,8 @@ msgid "A list of the users in this group." msgstr "Список пользователей, являющихся членами этой группы." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Группы" @@ -3800,10 +4448,11 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" "%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. " "Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать " -"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую " -"группу](%%%%action.newgroup%%%%)." +"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу]" +"(%%%%action.newgroup%%%%)." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Создать новую группу" @@ -3814,24 +4463,23 @@ msgid "" msgstr "" "Поиск группы на %%site.name%% по названию, месторасположению или описанию." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Поиск группы" #: actions/imsettings.php:70 msgid "You can send and receive notices through " msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk " -"[онлайн-мессенджер](%%doc.im%%). Настройте ваш IM аккаунт и предпочтения " -"ниже." +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " msgstr "" "Jabber или GTalk - адрес, типа \\\"UserName@example.org\\\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем " -"IM-мессенджере или в GTalk." +"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" +"мессенджере или в GTalk." #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " @@ -3844,20 +4492,20 @@ msgstr "" "Код подтверждения выслан на ваш IM-адрес, который вы добавили. Вы должны " "подтвердить %s для рассылки сообщений вам." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Вы должны авторизоваться для вступления в группу." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Вы уже являетесь членом этой группы" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Не удаётся присоеденить пользователя %s к группе %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s вступил в группу %s" @@ -3866,15 +4514,18 @@ msgstr "%s вступил в группу %s" msgid "Inboxes must be enabled for groups to work." msgstr "Входящие должны быть включены для работы групп." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Нет такой группы." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." @@ -3882,21 +4533,25 @@ msgstr "Вы не являетесь членом этой группы." msgid "You may not leave a group while you are its administrator." msgstr "Вы не можете покинуть группу, пока являетесь её администратором." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Не удаётся найти учетную запись." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Не удаётся удалить пользователя %s из группы %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s покинул группу %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Авторизоваться" @@ -3908,15 +4563,17 @@ msgstr "Нет текущего статуса" msgid "New group" msgstr "Новая группа" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Используйте эту форму для создания новой группы." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Не удаётся создать группу." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." @@ -3928,11 +4585,14 @@ msgstr "Это слишком длинно." msgid "Don't send a message to yourself; " msgstr "Вы не можете послать сообщение самому себе." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Запись опубликована" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ошибка AJAX" @@ -3951,7 +4611,7 @@ msgstr "\"Подталкивание\" послано" msgid "Nudge sent!" msgstr "\"Подталкивание\" отправлено!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID вход" @@ -3975,11 +4635,13 @@ msgstr "Автоматическое укорочение длинных URL" msgid "Service" msgstr "Сервис" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Автоматически использовать выбранный сервис" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." @@ -3987,16 +4649,17 @@ msgstr "Сервис сокращения URL слишком длинный (м msgid "Change your password." msgstr "Изменить ваш пароль" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Пароль сохранён." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Неверный тег человека: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Пользовательские авто-теги от %s - страница %d" @@ -4006,11 +4669,12 @@ msgstr "Пользовательские авто-теги от %s - стран msgid "These are users who have tagged themselves \"%s\" " msgstr "Есть пользователи, которые пометили себя как \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Информация профиля" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4022,20 +4686,25 @@ msgid "Automatically subscribe to whoever " msgstr "Автоматически подписываться на всех, кто подписался на меня" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Неверный тег: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Не удаётся сохранить теги." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Общая лента, страница %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Не удаётся вернуть публичный поток." @@ -4057,11 +4726,13 @@ msgstr "Общее облако тэгов" msgid "These are most popular recent tags on %s " msgstr "Самые популярные тэги на %s на текущий момент" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Облако тэгов" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Простите, регистрация только по приглашению." @@ -4075,8 +4746,8 @@ msgstr "" msgid "With this form you can create " msgstr "" "При помощи этой формы вы можете создать новый %%site.name%% аккаунт. (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID " -"регистрацию](%%action.openidlogin%%)!)" +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " @@ -4136,7 +4807,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "Это локальный профиль! Авторизуйтесь для подписки." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Ответы для %s, страница %d" @@ -4146,50 +4818,71 @@ msgstr "Ответы для %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любимые записи %s, страница %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Группа %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Группа %s, страница %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профиль группы" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Запись" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Действия группы" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Лента записей от группы %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Участники" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Все участники" @@ -4206,7 +4899,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Только отправитель и получатель могут читать это сообщение." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "Входящие для %s - страница %d" @@ -4216,30 +4909,37 @@ msgid "'s profile" msgstr "Профиль" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Профиль пользователя" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Фото" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Действия пользователя" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Послать приватное сообщение этому пользователю." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Сообщение" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Все подписчики" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Все группы" @@ -4249,11 +4949,10 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для " -"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging). " -"[Присоеденяйся](%%%%action.register%%%%) и получи возможность быть всегда в " -"курсе всего самого интересного в жизни **%s**. ([Читать " -"больше](%%%%doc.help%%%%))" +"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." +"register%%%%) и получи возможность быть всегда в курсе всего самого " +"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4269,7 +4968,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "В ожидании подтверждения данного номера телефона." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Выбор провайдера" @@ -4327,16 +5026,17 @@ msgstr "Это пользователи, записи которых читае msgid "These are the people whose " msgstr "Это пользователи, которые читают записи %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Записи, помеченные %s, страница %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Записи, помеченные \"%s\", в хронологическом порядке" @@ -4358,7 +5058,7 @@ msgstr "Тэги %s" msgid "Tag user" msgstr "Тэги для пользователя" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4370,18 +5070,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Вы можете помечать тегами только пользователей, на которых подписаны или " "которые подписаны на Вас." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Не удаётся сохранить теги." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." @@ -4390,20 +5090,23 @@ msgstr "" msgid "No such tag." msgstr "Нет такого тега." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Микроблог помеченный для %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Неудача при блокировке пользователя." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Неудача при разблокировке пользователя." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не найдено." @@ -4413,15 +5116,16 @@ msgstr "" "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " "на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Имя Твиттер-пользователя" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Твиттер-пароль" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Твиттер-друзья" @@ -4436,145 +5140,154 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Не удаётся подтвердить данные по аккаунту от \"%s\" из Твитера." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Ошибка при удалении данного блока." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Нет ID профиля в запросе." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Нет профиля с таким ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Отписано" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Группы %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Группы %s, страница %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Загрузить аватар" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Другое" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Другие опции" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Страница без названия" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Главная навигация" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Настройки" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватар, пароль, профиль и др." -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Соединиться с IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Войти" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Войти с OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Помощь" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Все" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "лицензия." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Заблокировать пользователя." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блокировать" @@ -4587,11 +5300,14 @@ msgstr "Мне не нравиться эта запись" msgid "To use the %s Facebook Application you need to login " msgstr "Вы должны авторизоваться чтобы использовать %s приложение" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "Создать новую учетную запись" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Общее" @@ -4611,31 +5327,36 @@ msgstr "Фильтровать тэги" msgid "All" msgstr "Все" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Тэги" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Выберите тэг из выпадающего списка" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Перейти" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес страницы, дневника или профиля группы на другом портале" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опиши группу при помощи 140 символов" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Где находится группа, например «Город, область, страна»" @@ -4644,20 +5365,20 @@ msgstr "Где находится группа, например «Город, msgid "Group" msgstr "Группа" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Настройки" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактировать информацию о группе %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Логотип" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавить или изменить логотип группы %s" @@ -4687,11 +5408,11 @@ msgstr "Авторизация" msgid "Leave" msgstr "Выйти" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Войти с вашим ником и паролем." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Создать новый аккаунт" @@ -4713,17 +5434,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s теперь просматривает твои записи на %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Месторасположение: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Домашняя страница: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4732,7 +5453,7 @@ msgstr "" "Био: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Вас \"подтолкнул\" пользователь %s" @@ -4749,39 +5470,47 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s добавил вашу запись от %2$s в состав своих любимых." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr " из" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Послать прямую запись" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Послать запись" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "6 или больше знаков" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "в ответ на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Удалить эту запись" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Удалить" @@ -4802,27 +5531,29 @@ msgstr "\"Подтолкнуть\" этого пользователя" msgid "Tags in %s's notices" msgstr "Тэги записей пользователя %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(пока ничего нет)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Общее" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Группы" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Облаго тэгов" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Особые" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярное" @@ -4838,31 +5569,33 @@ msgstr "Найти группы на этом сайте" msgid "Untitled section" msgstr "Секция без названия" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Люди на которых подписан %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Люди подписанные на %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Группы, в которых состоит %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Пользователь заблокировал Вас." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Подписаться на %s" @@ -4875,10 +5608,11 @@ msgid "Top posters" msgstr "Самые активные" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Разблокировать пользователя." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Разблокировать" @@ -4886,6 +5620,2063 @@ msgstr "Разблокировать" msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Лента друзей %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Лента друзей %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Лента друзей %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и друзья" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Тут вы можете загрузить свой аватар." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватар обновлён." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Тут вы можете загрузить логотип для группы." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Подберите нужный квадратный ракурс дла вашего аватара" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог от %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ошибка при отправке прямого сообщения." + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " +"изменять Ваши установки." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Лента публичного потока" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Лента публичного потока" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Лента публичного потока" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +", за исключением моей приватной информации: пароля, почты, мессенджера, " +"телефона." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Создать" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профиль группы" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профиль" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Исходящие для %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Настройки профиля" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код подтверждения выслан на мобильный номер, который вы добавили. " +"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " +"этого кода и инструкций по его использованию." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Нет такого пользователя" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " +"на Твиттер," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Искать людей или текст" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Соединиться с IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "\"Подтолкнуть\"" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Вы должны авторизоваться чтобы использовать %s приложение" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Поиск" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нет такого документа." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профиль пользователя" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и друзья, страница %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Неудача при разблокировке пользователя." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код подтверждения" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не удаётся удалить эту запись." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неверный тег: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не удаётся создать любимую запись." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Новая запись" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Новая запись" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неверное имя." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Профиль не определен." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Пользователь заблокировал Вас." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Заблокировать пользователя." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Вы должны авторизоваться, чтобы создать новую группу." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Группы" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не удаётся обновить пользователя." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройки синхронизации сохранены." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Настройки" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нет результатов." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Пользователь заблокировал Вас." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Сообщение" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Не удаётся сохранить профиль." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " +"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " +"аккаунтом OpenIDs отсюда." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки профиля" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" +"Micro-blogging)" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " +"запрос на тот электронный адрес, который вы указали в вашем аккаунте." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Вы идентифицированны. Введите новый пароль ниже." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Запрошено восстановление пароля" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Ошибка, связанная с кодом подтверждения." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Подписаться на %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любимые записи %s, страница %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" +"Micro-blogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Настройки" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Не локальный пользователь." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Записи, помеченные %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Лента записей от группы %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." +"register%%%%) и получи возможность быть всегда в курсе всего самого " +"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s теперь просматривает твои записи на %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Лента записей для %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Лента записей для %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Эта запись уже входит в число любимых!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Эта запись не входит в число ваших любимых записей!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не удаётся вернуть публичный поток." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Нет адресата." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Нет статусов." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "лицензия." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Подписки %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки профиля" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблемы с сохранением записи." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Сообщение для %1$s на %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Профиль пользователя" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профиль" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Загрузить" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Изменить Ваш пароль" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Соединить" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Поиск" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Список" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокировать" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Заблокировать пользователя." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавить или изменить логотип группы %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Нет контента!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Пользователь" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Поиск" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "URL Главной страницы неверен." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нет такого тега." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Прямые сообщения для %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "" +"Не удаётся следовать пользователю, т.к. такого пользователя не существует." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вы уже являетесь членом этой группы" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не удаётся присоеденить пользователя %s к группе %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не удаётся удалить пользователя %s из группы %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Группы %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Группы, в которых состоит %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Действия группы" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдерживаемый формат файла изображения." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Пользователь отслеживает несуществующее." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не удаётся преобразовать запросы в доступы." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Неизвестная версия OMB-протокола." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нет такой записи." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Потерян файл." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Все обновления соответствующие поисковому термину \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опиши себя и свои увлечения при помощи 140 символов" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опиши себя и свои интересы при помощи 140 символов." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Слишком длинное био (максимум 140 символов)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неверный URL профиля (не YADIS-документ)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Это локальный профиль! Авторизуйтесь для подписки." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не удаётся получить запрос." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Лента записей от группы %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Сообщение для %1$s на %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Группа %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Запись опубликована" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Лента записей для %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " +"о том, как авторизовать подписку. Ваш подписочный купон: " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " +"чтобы полностью отказаться от подписки." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не удается прочитать URL аватары из '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неверный тип изображения для '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Не удаётся перенаправить на сервер: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet лицензия" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "\"Подталкивание\" послано" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Ответить на эту запись" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблемы с сохранением записи." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Нет кода подтверждения." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Войти" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Выбор провайдера" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опиши группу при помощи 140 символов" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опиши группу при помощи 140 символов" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Лента записей для %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s добавил вашу запись в состав своих любимых" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " из" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Не удаётся удалить любимую запись." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Удалить запись" + #~ msgid "Code not yet ready." #~ msgstr "Код ещё не готов." @@ -4907,9 +7698,6 @@ msgstr "Отписаться от этого пользователя" #~ msgid "Tag a person" #~ msgstr "Тег пользователя" -#~ msgid "List" -#~ msgstr "Список" - #~ msgid "Icons" #~ msgstr "Иконки" diff --git a/locale/statusnet.po b/locale/statusnet.po index c7ac6ac9b1..9b5a64eb4d 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-14 10:32-0700\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,12 +41,13 @@ msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -96,20 +97,21 @@ msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" @@ -129,14 +131,16 @@ msgstr "" #: actions/facebookhome.php:163 actions/twitapistatuses.php:130 #: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 #: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" @@ -149,26 +153,29 @@ msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" #: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -176,7 +183,7 @@ msgid "" msgstr "" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" @@ -189,32 +196,33 @@ msgstr "" #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -222,7 +230,7 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -265,7 +273,21 @@ msgstr "" #: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 #: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 #: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -298,12 +320,13 @@ msgid "API method under construction." msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "" @@ -315,6 +338,8 @@ msgstr "" #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 #: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "" @@ -332,12 +357,13 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" @@ -364,6 +390,7 @@ msgstr "" #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "" @@ -373,22 +400,26 @@ msgstr "" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -397,7 +428,8 @@ msgstr "" #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 #: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "" @@ -407,7 +439,7 @@ msgid "Avatar updated." msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -415,14 +447,14 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -433,7 +465,8 @@ msgstr "" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "" @@ -447,6 +480,7 @@ msgid "Bio is too long (max 140 chars)." msgstr "" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -460,6 +494,7 @@ msgstr "" #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "" @@ -467,7 +502,8 @@ msgstr "" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "" @@ -477,22 +513,23 @@ msgid "Cannot instantiate OpenID consumer object." msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -502,11 +539,12 @@ msgid "Change password" msgstr "" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -517,6 +555,8 @@ msgstr "" #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 #: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "" @@ -530,11 +570,13 @@ msgstr "" #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 #: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -544,7 +586,7 @@ msgid "Confirmation code not found." msgstr "" #: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -566,7 +608,7 @@ msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "" @@ -576,7 +618,7 @@ msgid "Connect existing account" msgstr "" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "" @@ -590,12 +632,14 @@ msgstr "" #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 #: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" @@ -639,7 +683,8 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" @@ -662,23 +707,26 @@ msgstr "" #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 #: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" @@ -688,6 +736,8 @@ msgstr "" #: actions/emailsettings.php:447 actions/emailsettings.php:469 #: actions/smssettings.php:515 actions/smssettings.php:539 #: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -705,7 +755,11 @@ msgstr "" #: actions/profilesettings.php:259 actions/smssettings.php:266 #: actions/smssettings.php:408 actions/emailsettings.php:287 #: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "" @@ -730,17 +784,17 @@ msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -749,19 +803,20 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" @@ -776,12 +831,13 @@ msgstr "" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -791,7 +847,7 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" @@ -800,22 +856,23 @@ msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" @@ -837,21 +894,25 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" @@ -872,6 +933,7 @@ msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -881,7 +943,8 @@ msgstr "" #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 #: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -892,6 +955,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -906,7 +970,7 @@ msgid "Existing nickname" msgstr "" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "" @@ -945,7 +1009,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 actions/login.php:247 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -959,6 +1023,8 @@ msgstr "" #: actions/showgroup.php:237 actions/showstream.php:255 #: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 #: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "" @@ -970,17 +1036,21 @@ msgstr "" #: actions/updateprofile.php:97 actions/updateprofile.php:99 #: actions/editgroup.php:197 actions/newgroup.php:147 #: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "" @@ -988,7 +1058,8 @@ msgstr "" #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 #: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "" @@ -998,21 +1069,25 @@ msgstr "" #: actions/profilesettings.php:199 actions/register.php:168 #: actions/editgroup.php:194 actions/newgroup.php:144 #: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "" @@ -1043,28 +1118,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1095,7 +1173,7 @@ msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1116,7 +1194,7 @@ msgid "Invalid profile URL '%s'." msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1136,33 +1214,33 @@ msgstr "" #: actions/finishopenidlogin.php:279 actions/register.php:193 #: actions/register.php:211 actions/finishopenidlogin.php:284 #: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1171,12 +1249,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1185,11 +1263,13 @@ msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1203,6 +1283,10 @@ msgstr "" #: actions/register.php:454 actions/showgroup.php:251 #: actions/showstream.php:229 actions/userauthorization.php:128 #: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "" @@ -1214,6 +1298,9 @@ msgstr "" #: actions/updateprofile.php:112 actions/updateprofile.php:114 #: actions/editgroup.php:203 actions/newgroup.php:153 #: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "" @@ -1225,7 +1312,8 @@ msgstr "" #: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 #: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 #: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "" @@ -1245,24 +1333,25 @@ msgid "" msgstr "" #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1284,6 +1373,7 @@ msgid "Microblog by %s" msgstr "" #: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1294,13 +1384,14 @@ msgstr "" #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 #: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" @@ -1312,6 +1403,7 @@ msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" @@ -1321,19 +1413,20 @@ msgid "New nickname" msgstr "" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1347,7 +1440,9 @@ msgstr "" #: actions/showgroup.php:226 actions/showstream.php:244 #: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 #: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "" @@ -1359,6 +1454,9 @@ msgstr "" #: actions/register.php:159 actions/editgroup.php:185 #: actions/finishopenidlogin.php:231 actions/newgroup.php:135 #: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "" @@ -1372,6 +1470,9 @@ msgstr "" #: actions/updateprofile.php:83 actions/editgroup.php:181 #: actions/finishopenidlogin.php:221 actions/newgroup.php:131 #: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -1381,7 +1482,7 @@ msgid "Nickname not allowed." msgstr "" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" @@ -1394,26 +1495,28 @@ msgstr "" #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 #: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1426,12 +1529,14 @@ msgstr "" #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 #: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1442,6 +1547,7 @@ msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1452,6 +1558,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1460,11 +1567,13 @@ msgstr "" #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 #: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1475,6 +1584,7 @@ msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1499,13 +1609,14 @@ msgstr "" #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 #: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1515,13 +1626,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1566,11 +1679,15 @@ msgstr "" #: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 #: lib/command.php:178 lib/command.php:227 lib/command.php:264 #: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1593,12 +1710,13 @@ msgstr "" #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 #: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 #: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" @@ -1609,11 +1727,12 @@ msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1623,6 +1742,9 @@ msgstr "" #: actions/profilesettings.php:195 actions/register.php:161 #: actions/editgroup.php:188 actions/newgroup.php:138 #: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1643,6 +1765,7 @@ msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1653,12 +1776,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1677,6 +1801,8 @@ msgstr "" #: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 #: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" @@ -1697,7 +1823,7 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1705,19 +1831,20 @@ msgstr "" #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 #: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" @@ -1784,7 +1911,7 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" @@ -1801,17 +1928,20 @@ msgstr "" #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 #: actions/login.php:214 lib/facebookaction.php:315 #: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" @@ -1819,6 +1949,7 @@ msgstr "" #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" @@ -1826,6 +1957,7 @@ msgstr "" #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" @@ -1833,6 +1965,7 @@ msgstr "" #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 #: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1857,12 +1990,12 @@ msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1874,7 +2007,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1884,6 +2017,8 @@ msgstr "" #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 #: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1893,39 +2028,44 @@ msgstr "" #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 #: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 #: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" @@ -1942,17 +2082,18 @@ msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1963,11 +2104,13 @@ msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1982,7 +2125,8 @@ msgstr "" #: lib/facebookaction.php:277 lib/logingroupnav.php:78 #: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 #: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2000,13 +2144,14 @@ msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" @@ -2016,7 +2161,7 @@ msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -2030,7 +2175,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -2055,28 +2202,32 @@ msgstr "" #: actions/replies.php:116 actions/repliesrss.php:67 #: lib/personalgroupnav.php:104 actions/replies.php:118 #: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -2091,11 +2242,12 @@ msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -2113,12 +2265,16 @@ msgstr "" #: actions/twittersettings.php:164 actions/othersettings.php:119 #: actions/profilesettings.php:152 actions/subscriptions.php:185 #: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -2143,7 +2299,7 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" @@ -2151,35 +2307,37 @@ msgstr "" #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 #: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" @@ -2190,6 +2348,7 @@ msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2219,13 +2378,14 @@ msgid "Sorry, that is not your incoming email address." msgstr "" #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" @@ -2242,6 +2402,7 @@ msgstr "" #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 #: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" @@ -2255,13 +2416,13 @@ msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2276,6 +2437,7 @@ msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" @@ -2286,6 +2448,7 @@ msgstr "" #: actions/tagother.php:209 lib/profilelist.php:160 #: actions/profilesettings.php:123 actions/showstream.php:255 #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" @@ -2315,7 +2478,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2325,49 +2488,52 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" @@ -2398,6 +2564,8 @@ msgstr "" #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 #: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" @@ -2440,7 +2608,7 @@ msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" @@ -2470,7 +2638,7 @@ msgstr "" #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 #: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2483,6 +2651,12 @@ msgstr "" #: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 #: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 #: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" @@ -2492,15 +2666,18 @@ msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2510,18 +2687,20 @@ msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2536,16 +2715,19 @@ msgstr "" #: actions/avatarsettings.php:263 actions/emailsettings.php:247 #: actions/grouplogo.php:324 actions/twittersettings.php:306 #: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2580,22 +2762,24 @@ msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -2603,6 +2787,8 @@ msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 #: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -2610,6 +2796,7 @@ msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2626,7 +2813,7 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2634,6 +2821,7 @@ msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2661,11 +2849,12 @@ msgstr "" #: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 #: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2675,10 +2864,12 @@ msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" @@ -2686,7 +2877,8 @@ msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 #: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" @@ -2707,7 +2899,7 @@ msgstr "" #: actions/block.php:148 actions/deletenotice.php:122 #: actions/deletenotice.php:141 actions/deletenotice.php:115 #: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2728,7 +2920,7 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" @@ -2766,6 +2958,7 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2774,13 +2967,14 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" @@ -2804,7 +2998,7 @@ msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" @@ -2815,7 +3009,7 @@ msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2843,56 +3037,56 @@ msgid "" msgstr "" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2914,7 +3108,7 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" @@ -2954,7 +3148,14 @@ msgstr "" #: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 #: actions/othersettings.php:138 actions/recoverpassword.php:334 #: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2963,7 +3164,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2972,10 +3173,12 @@ msgid "Favor" msgstr "" #: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" @@ -2990,6 +3193,7 @@ msgstr "" #: actions/twitapifavorites.php:125 classes/Command.php:152 #: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 #: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -3052,7 +3256,7 @@ msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" @@ -3060,7 +3264,8 @@ msgstr "" #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 #: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" @@ -3069,17 +3274,19 @@ msgstr "" #: classes/Command.php:240 actions/newmessage.php:161 #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -3136,7 +3343,8 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:182 #: actions/grouplogo.php:183 actions/remotesubscribe.php:366 #: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -3166,6 +3374,7 @@ msgstr "" #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -3194,6 +3403,7 @@ msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -3226,12 +3436,14 @@ msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" @@ -3243,6 +3455,7 @@ msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" @@ -3250,32 +3463,34 @@ msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" @@ -3439,41 +3654,42 @@ msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" @@ -3485,61 +3701,63 @@ msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3547,11 +3765,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3593,7 +3811,7 @@ msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" @@ -3633,7 +3851,7 @@ msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" @@ -3644,7 +3862,7 @@ msgstr "" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "" @@ -3656,6 +3874,7 @@ msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "" @@ -3663,6 +3882,7 @@ msgstr "" #: actions/grouplogo.php:198 actions/grouplogo.php:258 #: actions/avatarsettings.php:126 actions/avatarsettings.php:202 #: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" @@ -3670,11 +3890,13 @@ msgstr "" #: actions/grouplogo.php:209 actions/grouplogo.php:270 #: actions/avatarsettings.php:141 actions/avatarsettings.php:214 #: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3697,11 +3919,13 @@ msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "" @@ -3709,6 +3933,7 @@ msgstr "" #: actions/grouplogo.php:406 actions/grouplogo.php:440 #: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" @@ -3766,7 +3991,8 @@ msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" @@ -3775,6 +4001,8 @@ msgstr "" #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 #: actions/blockedfromgroup.php:73 actions/editgroup.php:89 #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "" @@ -3783,18 +4011,23 @@ msgstr "" #: actions/showgroup.php:128 actions/grouplogo.php:104 #: actions/grouprss.php:103 actions/blockedfromgroup.php:80 #: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 #: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" #: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3829,6 +4062,7 @@ msgid "Send me email when someone " msgstr "" #: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3867,18 +4101,21 @@ msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "" @@ -3959,6 +4196,7 @@ msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3987,16 +4225,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -4005,10 +4244,12 @@ msgid "You can upload a logo image for your group." msgstr "" #: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "" #: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -4075,20 +4316,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -4097,16 +4338,18 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -4115,20 +4358,24 @@ msgid "You may not leave a group while you are its administrator." msgstr "" #: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" #: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" #: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -4140,15 +4387,17 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" #: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "" #: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "" @@ -4161,12 +4410,13 @@ msgid "Don't send a message to yourself; " msgstr "" #: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -4208,10 +4458,12 @@ msgid "Service" msgstr "" #: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" #: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "" @@ -4220,6 +4472,7 @@ msgid "Change your password." msgstr "" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" @@ -4238,11 +4491,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" #: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4253,20 +4507,24 @@ msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" #: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4291,7 +4549,8 @@ msgid "Tag cloud" msgstr "" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4341,6 +4600,7 @@ msgid "That's a local profile! Login to subscribe." msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4361,7 +4621,7 @@ msgid "%s group, page %d" msgstr "" #: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "" @@ -4370,7 +4630,9 @@ msgstr "" #: actions/showgroup.php:253 actions/showstream.php:271 #: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 #: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" @@ -4379,12 +4641,14 @@ msgstr "" #: actions/showgroup.php:264 actions/showstream.php:282 #: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 #: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" #: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" @@ -4395,7 +4659,8 @@ msgstr "" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "" @@ -4404,11 +4669,12 @@ msgstr "" #: lib/tagcloudsection.php:71 actions/showgroup.php:344 #: actions/showgroup.php:378 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" #: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4434,24 +4700,28 @@ msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" #: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" #: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" #: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" @@ -4482,7 +4752,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4541,11 +4811,11 @@ msgid "These are the people whose " msgstr "" #: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" @@ -4605,15 +4875,17 @@ msgid "Microblog tagged with %s" msgstr "" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4647,19 +4919,20 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" #: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" @@ -4670,56 +4943,61 @@ msgid "%s groups, page %d" msgstr "" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" @@ -4727,15 +5005,15 @@ msgstr "" msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "" @@ -4743,44 +5021,46 @@ msgstr "" msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" #: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4821,14 +5101,17 @@ msgid "All" msgstr "" #: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" #: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" #: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" @@ -4837,6 +5120,7 @@ msgid "URL of the homepage or blog of the group or topic" msgstr "" #: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -4845,6 +5129,7 @@ msgid "Describe the group or topic in 140 chars" msgstr "" #: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4896,11 +5181,11 @@ msgstr "" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4957,15 +5242,16 @@ msgstr "" msgid "From" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "" @@ -4975,21 +5261,23 @@ msgstr "" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" #: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -5064,6 +5352,7 @@ msgid "Groups %s is a member of" msgstr "" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" @@ -5073,7 +5362,7 @@ msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -5098,22 +5387,22 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" -#: actions/all.php:77 actions/all.php:59 +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:82 actions/all.php:64 +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:87 actions/all.php:69 +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:112 actions/all.php:125 +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 msgid "You and friends" msgstr "" @@ -5133,17 +5422,17 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/deletenotice.php:73 +#: actions/deletenotice.php:73 actions/deletenotice.php:103 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:127 +#: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" @@ -5166,13 +5455,13 @@ msgid "" "latest notice, you need to give it permission." msgstr "" -#: actions/grouplogo.php:155 +#: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:367 +#: actions/grouplogo.php:367 actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -5214,19 +5503,19 @@ msgid "" "before changing your settings." msgstr "" -#: actions/public.php:125 actions/public.php:133 +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:130 actions/public.php:138 +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:135 actions/public.php:143 +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:210 actions/public.php:241 +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5243,21 +5532,23 @@ msgid "" "Try our [OpenID registration](%%action.openidlogin%%)!)" msgstr "" -#: actions/register.php:432 actions/register.php:479 +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/register.php:433 actions/register.php:480 +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 msgid "" " except this private data: password, email address, IM address, and phone " "number." msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 msgid "Created" msgstr "" #: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5297,18 +5588,22 @@ msgid "FOAF for %s" msgstr "" #: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 msgid "Edit Avatar" msgstr "" #: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 msgid "Edit profile settings" msgstr "" #: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 msgid "Edit" msgstr "" #: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5317,7 +5612,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/smssettings.php:335 +#: actions/smssettings.php:335 actions/smssettings.php:347 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." @@ -5342,7 +5637,14 @@ msgid "" msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 msgid "No such user!" msgstr "" @@ -5368,7 +5670,7 @@ msgstr "" msgid "Search for more groups" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -5378,11 +5680,11 @@ msgstr "" msgid "Connect to SMS, Twitter" msgstr "" -#: lib/action.php:671 lib/action.php:721 +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 msgid "Badge" msgstr "" -#: lib/command.php:113 lib/command.php:106 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5559,20 +5861,20 @@ msgstr "" msgid "More..." msgstr "" -#: actions/all.php:80 +#: actions/all.php:80 actions/all.php:127 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:85 +#: actions/all.php:85 actions/all.php:132 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:87 +#: actions/all.php:87 actions/all.php:134 #, php-format msgid "" "You can try to [nudge %s](../%s) from his profile or [post something to his " @@ -5580,6 +5882,7 @@ msgid "" msgstr "" #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -5620,30 +5923,39 @@ msgstr "" msgid "Conversation" msgstr "" -#: actions/deletenotice.php:115 +#: actions/deletenotice.php:115 actions/deletenotice.php:145 msgid "Do not delete this notice" msgstr "" #: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" #: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" #: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" #: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" #: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "" @@ -5702,6 +6014,7 @@ msgid "User is not a member of group." msgstr "" #: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 msgid "Block user from group" msgstr "" @@ -5717,15 +6030,15 @@ msgstr "" msgid "Database error blocking user from group." msgstr "" -#: actions/groupdesignsettings.php:73 +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:146 +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:157 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -5733,28 +6046,32 @@ msgstr "" #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 msgid "Couldn't update your design." msgstr "" #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 msgid "Unable to save your design settings!" msgstr "" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "" -#: actions/groupmembers.php:438 +#: actions/groupmembers.php:438 actions/groupmembers.php:441 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make this user an admin" msgstr "" @@ -5789,7 +6106,8 @@ msgstr "" msgid "Invites have been disabled." msgstr "" -#: actions/joingroup.php:100 +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" @@ -5812,50 +6130,51 @@ msgstr "" msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/newmessage.php:178 +#: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "" #: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format msgid " Try using another %s format." msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 #, php-format msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/newnotice.php:205 +#: actions/newnotice.php:205 lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/newnotice.php:208 +#: actions/newnotice.php:208 lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: actions/newnotice.php:211 +#: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/newnotice.php:214 +#: actions/newnotice.php:214 lib/mediafile.php:159 msgid "Missing a temporary folder." msgstr "" -#: actions/newnotice.php:217 +#: actions/newnotice.php:217 lib/mediafile.php:162 msgid "Failed to write file to disk." msgstr "" -#: actions/newnotice.php:220 +#: actions/newnotice.php:220 lib/mediafile.php:165 msgid "File upload stopped by extension." msgstr "" @@ -5871,12 +6190,14 @@ msgstr "" msgid "Somehow lost the login in saveFile" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "" #: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "" @@ -5901,19 +6222,19 @@ msgid "" "account. Manage your associated OpenIDs from here." msgstr "" -#: actions/othersettings.php:110 +#: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:115 +#: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "" -#: actions/othersettings.php:116 +#: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" -#: actions/public.php:82 +#: actions/public.php:82 actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" msgstr "" @@ -5935,7 +6256,7 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:245 +#: actions/public.php:245 actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5977,25 +6298,25 @@ msgstr "" msgid "Sorry, invalid invitation code." msgstr "" -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" msgstr "" -#: actions/replies.php:179 +#: actions/replies.php:179 actions/replies.php:198 #, php-format msgid "" "This is the timeline showing replies to %s but %s hasn't received a notice " "to his attention yet." msgstr "" -#: actions/replies.php:184 +#: actions/replies.php:184 actions/replies.php:203 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:186 +#: actions/replies.php:186 actions/replies.php:205 #, php-format msgid "" "You can try to [nudge %s](../%s) or [post something to his or her attention]" @@ -6007,13 +6328,13 @@ msgstr "" msgid "%s's favorite notices, page %d" msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:172 +#: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -6028,30 +6349,31 @@ msgid "" "would add to thier favorites :)" msgstr "" -#: actions/showfavorites.php:226 +#: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." msgstr "" #: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:337 +#: actions/showgroup.php:337 actions/showgroup.php:340 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:446 +#: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6060,7 +6382,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:474 +#: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" msgstr "" @@ -6078,25 +6400,25 @@ msgstr "" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: actions/showstream.php:350 +#: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:355 +#: actions/showstream.php:355 actions/showstream.php:449 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:357 +#: actions/showstream.php:357 actions/showstream.php:451 #, php-format msgid "" "You can try to nudge %s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/showstream.php:393 +#: actions/showstream.php:393 actions/showstream.php:492 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6122,7 +6444,7 @@ msgid "" "%) and be the first?" msgstr "" -#: actions/subscriptions.php:115 +#: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -6133,29 +6455,31 @@ msgid "" msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/tag.php:77 +#: actions/tag.php:77 actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:91 +#: actions/tag.php:91 actions/tag.php:98 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/twitapifavorites.php:125 +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 msgid "This status is already a favorite!" msgstr "" -#: actions/twitapifavorites.php:179 +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 msgid "That status is not a favorite!" msgstr "" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 msgid "Could not determine source user." msgstr "" @@ -6163,16 +6487,17 @@ msgstr "" msgid "Target user not specified." msgstr "" -#: actions/twitapifriendships.php:221 +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 msgid "Could not find target user." msgstr "" -#: actions/twitapistatuses.php:322 +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: actions/twitapitags.php:74 +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -6181,11 +6506,11 @@ msgstr "" msgid "Import my Friends Timeline." msgstr "" -#: actions/userauthorization.php:158 +#: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "" -#: actions/userauthorization.php:179 +#: actions/userauthorization.php:179 actions/userauthorization.php:212 msgid "Reject this subscription" msgstr "" @@ -6213,41 +6538,42 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: classes/File.php:127 +#: classes/File.php:127 classes/File.php:137 #, php-format msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " "to upload a smaller version." msgstr "" -#: classes/File.php:137 +#: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: classes/File.php:145 +#: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Notice.php:139 +#: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." msgstr "" -#: classes/User.php:319 +#: classes/User.php:319 classes/User.php:327 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 msgid "Design" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "" -#: lib/action.php:712 +#: lib/action.php:712 lib/action.php:727 msgid "TOS" msgstr "" @@ -6336,15 +6662,15 @@ msgstr "" msgid "Save design" msgstr "" -#: lib/designsettings.php:378 +#: lib/designsettings.php:378 lib/designsettings.php:369 msgid "Bad default color settings: " msgstr "" -#: lib/designsettings.php:474 +#: lib/designsettings.php:474 lib/designsettings.php:465 msgid "Design defaults restored." msgstr "" -#: lib/groupeditform.php:181 +#: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" @@ -6432,15 +6758,15 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/noticeform.php:154 +#: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" msgstr "" -#: lib/noticeform.php:158 +#: lib/noticeform.php:158 lib/noticeform.php:184 msgid "Attach a file" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "" @@ -6448,7 +6774,7 @@ msgstr "" msgid "User ID" msgstr "" -#: lib/searchaction.php:156 +#: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -6471,3 +6797,495 @@ msgstr "" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "" + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, php-format +msgid "Could not join user %s to group %s." +msgstr "" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." +msgstr "" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "" + +#: actions/profilesettings.php:125 actions/register.php:457 +msgid "Describe yourself and your interests" +msgstr "" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, php-format +msgid "Could not find a user with nickname %s" +msgstr "" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index 2cb0397ec4fb500a7004c055fab6679afac051e8..544bd1e8e6b2c61fe4202fdcab90e2588210ac0a 100644 GIT binary patch delta 24172 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 delta 17262 zcmZwNcYIIh|NrrGGK`4CN<<{QLnI=0?7c@(TWvz^h+V6^Ym1iBquy3gYP8x?Z-i=V z)o4*vts1qe`azANO2_Z<%(;BNpFe)*cDr)FUaxbV>zr$xlj!HOX?gJdRYBg%`GVfH zIBo=3Rt(lEXjwl6T2}Y6%39XB+LlGiI*;M_085}<$Ff>sB4)!emM)qxew?yI};*$LzSy_$fvbZ^t}%42$7q z3`4u2``~#nKXFOS8X)E)?vka~veKyJB;iF}n1SkWG3rS_M2&1edhoc(-#7V?MwS&q zJ`xi#4y$8xOv7o$`>09n(b%$>MC&aq&i$=#sno>ZunCspM*$pxrEn%{No@G8Ij2Eeym)s1Y?ob|-OSEv;x*ZlL9)ud{Tuj1mP5u$`3|3T2%c_QbQ2i}K4RkYV6K5I^wPgMiNt`9I z5dX#DxR9-#jKMFv7goTW#MMwU)Bru$1l8dH48gIeJu?-faXCg|CTfXKpdKWY9j^iA z_fpZ?)UJtP`f&N8+R$b0$fT7nL!cKxv` zPQwo9-9<(3WuCTf2YuVSPdo&*w$ssrZ=pu?39946Ccc7k#LuxJ#?os7wn44+SoGjh z)E?MnynWrJr6_?~x|*on z-2k<@JEE3gqRG$2YQ(EBk^5Wcsc5s=UEHZEgBt0}s7*H<^d&l z#;BRkkFL;jv8sso^Hc%j3SOh zJzx!EThs^#Vi6pNnqnWSzcr}qb{T&_E%9CKjfHwyRuE3`QqdYqy*3#bikmTOZB2Xx zb-_8*l3gt~5k0ATedWIfs zpUUra9F6Mu0cs}xLG6KvKJIH9kIFYPaW~Xnn23XL9cpIsa5F7wNo2;oRs$-Us?Mkm zMxb`{Y~wQ21)rh^52IecUr{rZ_f>bPiefBr1=RJeQB&RrE8;xVTeBC-;bF|9_x~vs zU6`{UuM#Gr8vcwL!5y561^c^8uoSffD={87U@#st`BT`G_#&3T_yO+By@Yz;S5WQy zVP5WU4WUvDC!wBf6(-^dT#8RI2%Uj$2a7Qq@j5JtpP+XC8Pt+I#3Zzt_u80@`rR=I zwSJFY>mDjTV2iv6fHI)>WaKcklBF{R|knC)SxqTF%&nUHrp4d zB|MI5|IoyN>F$Fhpl)0bHKU!3!@N{9<+D*EU4?p}BdDpmgqo3Cs2e>%ZPuV+uEkIf zUJrF$8_bP;Fbs#I9>|N~I3M+vt-`F|u9;LclB34+s19yoX?%p?7&qMAgcVRXs)FjE z8LGn`s1ML+)JPYgKE>-%OR)XJ`)=&DvW;;6c#K2MKx@>EC!j{U9`yhRP&YV@ zIq@NChW86V%@M67{wmH2L39Z{0uW)o%8TaX%nUQ5W__ zjd&DlL~~F#Sb)0WhsI2kKY+T?CDhd4#FF?2Rzc5emh}O?f|}94Q1=NM%lzwgC@|Lj zMwda2pf_qp(u`izgS><4UdM%`#3>Vdv64UVCv{0G$Qa}Dd@-^j+dYE5u&{3)v4cGS##jrt{X0Sn+&6F))i zp}$a{Y;UfK?hV6Ho6lq7GN_K~pf*cK)ax`B_2jRkrf?dz#6?J-)^&Udd-6xa9Q+Uq zVWmm#eO^ZO(+hdMz1FK#^y!?6deXJ1C;S{WqHjsm*)+4t)fu7GY(5*1=IudL@m`gR0q>h`HxUD z^fl@MZ=z->a*F%D$6^$5Nz@*ykGj4EMsja!1QmT4W}|N4pf<@$jKECPOdLb)jSJ@d z9gHCkn(D4)9O}j;P@AqaYN{(6YoPkCi~2R)0=;@qhfztu#pc9r)D&JvJwU-}?rtuF zy08@%!x2~*7h)W4#-jK=7Qu(8sn0vz?Y|sWB<_THF=IOOuPIwbLa*Bq<1>sVPMX2f zV(yQdwvXNZ8l6Je*(Y2+H85<@EO*_8gIHIpNLwj)u@@V@m1qP)Se2Q=T3cL)Qo$} zP|--cqn>acYGfNxBe{lJvtn<%AE=I4n|KnIz+I@dyo%ZjzoV8ee7^e{mqMMdjvj1* zX_$uG&ug8hl8eL>48?#2?vsY2rYI4^unB6Dbwq8}v8WrZK<)aScoX-S{Q7s?nc0WU z$e%)87vs49DW)NY>izdp(MaAx?e;CG57A-Fjh8SSZ=)XYIcituSja~Q6Hse93-zEM zp=M$yY9>#kHecww?$RV+AaPxc<^EPfDrGShJK=oPlm3DlVb~(~FQX*X=Inr_aU3S% zTC9x6unGqH+}{y3FqwEfwo^My!l(EK7F*2V%TZZFr4^pSc#K=(-lz$BhzFx?@FwcP z_L}@HWdB+@m%8oW#jKH|Zgd)J;J>KrYVfX>#8gy&bCxmxIwF6zQn zm80%xMwd^l!g>`WO>H$xp z2IReED)+D;i6^L$hplthv?yvmB)n{W=B;$PH_=j?EQS1dpcbQ5X-JFpO5^qR^Oj3JR{r@Mw_P)pJaYvWSm zIn+!=e(vV$p&n$iaSfIuK8zLdDQX6jce(i%sCXi(AMY|Mn(_na!An>R|3Ph@nqRna z4@@9liWD(6?JxmL61PFMA8%Y`@`o^r{C!uimGdk2%Tx?2aH0=-a3Kcc zHY|XqxQl!EQIGUJ3d4W>=|bL`#)xnd!jOGch^R( zaZ9X@-HnTkCs5}@_PR?JjT%u^48=Ca9>&3#LVheZz>TPZ{f4=`R31^$2(5kY2POg| z2+LzBY=YXgBQP1gs1a_&B6t!tGxxC=7TxczeFM~tjzK-Zderq7ury}>n!c2%L`7@X z8x?1uZoCaOrB{qO4!9kbN8P9o=EE7NnOlr%zutHp^#%L`H8TMR-PbT2wdWEJ^8Rb; z>X68fub2}2u=_Vz4$Mv*im_M#b74i)2HdT_2lg_4qru$cqW#_HK;W{ik4(NE$V~vlQG{hccvO+2lA~@Q@k3rwmXqG z%sPqccfoh=^{eqs;?tOe{b!{fH{WQ~NJn5WE;X(~jeH#@>O$0%|BWG-{e=5z&4=2Q zg;DM6V0j#B;uW}=_!x3yYw}5bz*zrTRFqhQW$Nx;BKxOs2kVDtUZCc!Aw*K zi%<{nA%@|0)F=4>*21f(ffYIJ{@3+HY)jnB_!)Y&R)J^SZ+BrVK-?Guu`BAyd!j}% z3?pzZs@)ol#2u)1$59V<1=a8GsHMtv*1bLgBZ*TmKfZL9`PY>9G>NxR9j(G7{0w!Y z3nspAj6Ub?;zp>c?qPi0@|i{1r7r)_M1}3r7tk_B`{i4pK;Hirb+!(P%7) zKI0}VM107271i-`RQr5Cx^GQoRJ%5)>jxXBVolcF4yK`J{-~00D zA#R05F&(u8^DqiOM&0-T>PvXbmF&Dmsx?v|Qi)pBD{xU3r>rm|vpgO#cdeHx1JU&HDb?i-dGnPZm zNL6E#o6LVB5*b;H+Dn|2;*Cf-NA z6wr;r>2II?w1#t@YH}Nf8L0t7$cc#vuZg3N`;hz|f)_>foE`b_p z7t{j|G)^|>7h)aq-osRMVfNeZpW&skDRG*Kw_~xHNfMj8U4k?F~8GBYf_2IIvj>mG4hf72gDNN8Dsv(ZoUmx zq}^QO9^>z*8zek&&v!GN5UtH{E8ON&FOdqxY%1`Re}3?+4;Z zSOLF6ee>^QaSVOtj<`H(v$i$9joFEhq4vOOtbxDb4NQ8@{A&%v{&J@_2J;f9U<5Ws zUD(a!M`I-MOe~7;q1t_k=R;y029XY7ZpiaC{ky;%?M{elp(0Ld4IpC`MRz)&o~YJ&3mj6>XBys1Dbl zUbBOk&E}um7)^ZEwzGb_J;V;g(E+yA28S8evSre>iY=sh>@ zwKA!ANSww2_yiNNXOQhqHR=K1GakjP5g8+b?W})_mBS*mtB5_Zt#LCZ6NfVzEnQ7i z+z#XP{!gY-g2bw<1S3anvRkM%i_UIm{W;wh^`V)E8u?C4!H^tw)~2n4>i7V@j1Np) zFQ+@8G^|U0q45Vy;r>>E5IqThAmAG~7}e2j)D#xXn^eTMn)Am+#Om<{iS+x-1UF2a< zM$z##c`x;E-Ozf2dOW#Blv*bDf*(1j4;Cw$b-ZTO{jK9}&U#3)59O{-a={H8raH%J z<7~W1Im!9vzIC+<5$$z_FWSfrmeR%jU6g);#a6w@MFps zrjrKbMpATKB*#|BI`omz!AoMzrL-~mK-w;#t~aMIdeq1qKF+PC=!^P+n{)sB?{af- zO->G^6eDg&gGtyBzry+C`MO&Cj>!dl> z<5TwEe~%0djxdY@n5??px4pVP!&Wju5f1;G4Z7lvkX+zOb zpK_Nn#>Ay{|HqULB-SD?f>nX?38fxI$1u*lMP2`4`INa(`2<}<*+S9lq&K7wb>8Nz z<1OksZc+Xqw-fch8R@8mA(a1)Kc3_)8ePab&HqBh$#K;6A=1%+bGIm~s7IJiPE&6| z?f~A#!IZh2NSK=Yl;1w<)%sQTtdy85Z z%21M3iLX*`O8o{dBd&=$^u?=8tRoZOf6)nXb?OtaJf&Awp7HOeQ4`86l0_*WaiTZz zI&)!nTu00=KI;VablR+-uHWAWF@szu>KCvhv5rwjeeKGS|DM=mawEyv_Xcal!~T}I76JD5@d2CXjhy# zjndCt`wiz75bIbLVD>-1DXlP*96~)mAcQkGKmt9A$u$1}7K zr>^5e%4W(Pa@%ky9z-7{k7<)iZXV?)N+F8(6;5oURHfXbp^nZjSwFk-^H&;Hq|~C# zKzwoBp|X!skX(PtLe4KC*6(~BTgU~N_Ltq16=UKlwB_(x?M$Ku(NRh~C+1NmlTXLG zYQ_;ny*5S1BrI*NQ~W1ogNcJVH-ma-tU}q%xpd<7)EiRvQJRo@mt2hI|2UQXBpTxm zPU>imPlz8-|J3BJ5??m;mejXWHgSF|{zlnL@lmQ%7E@jvDb#-?$i=lMseeRyVorAT znhrlPUNR?kn-21sxIFQjv^izsBgCgEKbTk~alR$x0r_2~za7*EQFMGn`I~wjN-vZ1 zeo18w)JGNW4p=X%Mb>|pvd&OnP1()4K5kyyfWKsDIF53HdJ1Ja z^@23oLOnb6g_L)Q$5V9tN&GhT>eRnAxohNfOeda6DN9_5a+Z2d${xyaN@vsVK5bvt z-+##@KPTA@XJQ#nJi?B|&8WAef%4#2jigSU;Ov;I#@dpTEG?I_16U+RQ8vJo$( zUJ{GHNJ@==Jsnk}T%>*(y_BXp$Y;ll=Ia_&grO36u`h(VFOFqYJ~VMt&Q&p;_cytGc!f6mu`TwX z=*UTVpR&`mi!qMm`XS`sF#U`rf1P?LxocYgXv!E$P19f+^`9tBOb1l6j`Jq2Ks1$- zi&BPb8k4V2`JA{H<;Ag!b0sMUOux$iK?$b(Ol~>Xv`ZyuNbn1#DCNcRFO^Ni-{Zd~ zUw{h+Q13+PPI;HOlDXh2^{=VF7T^?VvB0rgMmTXT3;VmZY!K+wXmie~*>-~SN81X{ zly;l_gWCTboBKF{Fd-)ExS<^V876PMh>($4Rf|gbqvdZya{gc8ZUPaMq1D;AD&(=%kMd z_3s~*Y&)IC-1T>UZI12lIWE!mFB!ip(BE~^KHHh=J?%_=W3cn*8>Rf!r-TJMO-6<} zqo&6>8>VMCHD~1Zcbrkkb|%am>O7yB&nY~sj?;hEOU_rb+Bk8uKX;za-r(HM*y4OL zr>Nt3Gq*qbt~cNvEOhlzF#?v;5s>&bNz7JK235 zosqsx{!bS-vz^jQll^H+$J+jg<+JUA1JXTXhI{%C8|g{)r1u-^N$uNr*qHRu&dK*W zIE`1#b?&aX?!UdVU4YYlb&B)V>T>?VYu4J%__Z^fO095l+4wF(C}*SDR*TUt38TWb2N`x#%)t*4yM+iE&bwykvzZ(r;9 zGHW;kb|g6=J5rrnJ7S&7JMuaOclP)1+<7FxfAEVA0si{Co7>LrJ+J%jx3Hs~C3|C> z$$P!d_Q>@WFVe@}a{1a)(L;I=*kOILnR3<=i{EA)tA>Z$v&j z(tqJtvta+8Q|)YL!0Dz=*s%nE=$Uf?Th9MvJ2@|u_fNTyWM|tyJ^j^@ss6xA^@6ew zOCOy&WOS-?`0A@plWVa~#?1)l?+0N{+O2SB?u`OYqw8y&R#!bv;~UNVM{e}8oi4w| z`7>_D2hcLoxp-@2aQh*t!&99p2O^zKzxMR!|IbC+IeRCM)AVi?XVKk6Uonqe$!Yyt zL;r!_nglqL@5lN(KImlo+SRg4I)6Uw>@4~{*8lwXnzn!4hOr+cz(#y~-(ZA<8!<#BSm15n|``T@SIR z_+HOt56t{4mmO^T5^~#L`3i^GXMNAY?6R3*dF(!cnalIr=k3ftBW<3rYLuPN*DK0S z@hyq6lQQo_*}ZLFYP6lQJ~P_3eRm4m)qS;N?C!pYF+9wJ7<+AIzVi}~J4vg0zp zOR^W(nHi<+o_1z@S-Vbf=FAkkzMWaQvOP7xcdx2l+*hxf9hEt}nmyR|J*#ea_Km4w zSIQ1{Uf-Vjc4=Q!1G``5 z_6GKefXpq8?L~pU1wg2^ JlU8>1{|5(CzUTk| diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index d0a5001da5..bb667acd64 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-03-17 10:54+0000\n" "Last-Translator: Per-Olov Jernberg \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Sök i strömmen efter \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "från" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Uppdateringar med svar till %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har bjudit in dig till %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -102,6 +104,7 @@ msgstr "" "Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." @@ -122,25 +125,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s uppdateringar med svar till uppdatering från %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status den %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s(%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Publik Ström" @@ -150,34 +156,48 @@ msgstr "%s Publik Ström" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s med vänner" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s uppdateringar ifrån allihop!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -185,7 +205,8 @@ msgstr "" "(Du kommer få ett meddelande med email inom kort med instruktioner hur du " "bekräftar din emailadress)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -194,7 +215,8 @@ msgstr "" "**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" "(%%site.broughtbyurl%%)" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikroblogg service." @@ -206,32 +228,36 @@ msgstr ". Användarna är tydligt markerade med sitt fulla namn eller smeknamn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " "i." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "Minst 6 tecken" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Minst 6 tecken och glöm inte bort det!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller fler tecken. Måste fyllas i." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -241,6 +267,7 @@ msgstr "" "godkänna att %s får skicka meddelanden till dig." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metoden hittades inte!" @@ -299,16 +353,23 @@ msgstr "API-metoden hittades inte!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metoden är under uppbyggnad." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Acceptera" @@ -319,6 +380,9 @@ msgstr "Acceptera" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Lägg till" @@ -336,27 +400,29 @@ msgstr "Lägg till eller ta bort OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adress" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresser till vänner att bjuda in (en rad per adress)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alla prenumerationer" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s alla uppdateringar" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" @@ -366,30 +432,37 @@ msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Redan inloggad." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Det finns redan en prenumeration!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Är du säker på att du vill tabort detta inlägg?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Tillåt prenumeration." #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -399,15 +472,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Användarbild" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Användarbilden uppdaterad." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -417,6 +494,7 @@ msgstr "" "vidare instruktioner. (La du till %s i din vännerlista?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -425,7 +503,7 @@ msgstr "" "efter meddelande om vidare instruktioner." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Väntar bekräftelse på detta telefonnummer. " @@ -437,6 +515,8 @@ msgstr "Tidigare »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografi" @@ -444,16 +524,18 @@ msgstr "Biografi" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Biografin är för lång (max 140 tecken)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan inte ta bort detta inlägg." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan inte läsa användarbild URL '%s'" @@ -461,6 +543,8 @@ msgstr "Kan inte läsa användarbild URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Kan inte spara det nya lösenordet." @@ -468,31 +552,34 @@ msgstr "Kan inte spara det nya lösenordet." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Kan inte initiera OpenID objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Kan inte normalisera det Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den emailadressen" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Ändra" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Ändra email hantering" @@ -502,11 +589,12 @@ msgid "Change password" msgstr "Byt lösenord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Ändra ditt lösenord" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" @@ -516,6 +604,9 @@ msgstr "Ändra dina profilinställningar" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bekräfta" @@ -528,12 +619,14 @@ msgstr "Bekräfta adress" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Verifikation avbruten" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bekräftelsekod" @@ -542,7 +635,8 @@ msgstr "Bekräftelsekod" msgid "Confirmation code not found." msgstr "Bekräftelsekoden kunde inte hittas." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -576,20 +670,24 @@ msgstr "" "service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Anslut" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Anslut till existerande konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakta" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kan inte skapa OpenID formulär: %s" @@ -597,35 +695,39 @@ msgstr "Kan inte skapa OpenID formulär: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kunde inte följa användaren: %s finns redan i din lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Kunde inte skicka vidare till servern: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kunde inte spara informationen om användarbild" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kunde inte spara informationen om den nya profilen" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kunde inte prenumerera på annat åt dig." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kunde inte prenumerera." @@ -645,15 +747,17 @@ msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kunde inte radera epost bekräftelsen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kunde inte radera prenumerationen. " #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kunde inte få fram status." @@ -666,29 +770,38 @@ msgstr "Kunde inte få en förfrågan token." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kunde inte lägga till bekräftelsekoden." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kunde inte lägga till ny prenumeration." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kunde inte spara profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kunde inte uppdatera användarens inställningar." @@ -704,42 +817,48 @@ msgstr "Kunde inte uppdatera användarens inställningar." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kunde inte uppdatera användare." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Skapa" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Skapa en ny användare med det här smeknamnet" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Skapa ett nytt konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Skapar ett nytt konto för OpenID som redan har en användare" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuell bekräftad Jabber/Gtalk-adress." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Nuvarande bekäftat SMS telefonnummer" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Nuvarande bekräftade emailadress." @@ -748,23 +867,27 @@ msgid "Currently" msgstr "Just nu" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error vid infog av hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasfel för svar: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Tabort inlägg" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" @@ -772,11 +895,13 @@ msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Epost" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Emailadress" @@ -786,39 +911,43 @@ msgid "Email Settings" msgstr "Email inställningar" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Epostadressen finns redan." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bekräfta epostadress" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Emailadress såsom \"användare@exempel.se\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Emailadresser" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Skriv in ett smeknamn eller en epostadress." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Fyll i koden du mottog i din telefon." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Felaktig bekräftelse av token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Lyckades inte ansluta användaren till OpenID." @@ -829,39 +958,46 @@ msgstr "Lyckades inte ansluta användaren." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fel uppstog när användarbild skulle läggas till" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Fel uppstog när nya profilen skulle läggas till" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fel uppstog när fjärrprofilen skulle läggas till" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fel uppstog när adressen skulle bekräftas." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fel uppstog när fjärrprofil skulle sparas" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fel uppstog när profilen skulle sparas." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fel uppstog när användaren skulle sparas." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fel uppstog när användare skulle sparas." @@ -870,6 +1006,9 @@ msgstr "Fel uppstog när användare skulle sparas." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fel uppstog i användarens inställning" @@ -880,6 +1019,7 @@ msgstr "Fel uppstog vid uppdatering av profilen" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fel uppstog under uppdatering av fjärranvändare" @@ -889,33 +1029,36 @@ msgid "Error with confirmation code." msgstr "Fel uppstog med bekräftelsekoden." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Nuvarande smeknamn" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Frågor & svar" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Uppdatering av profilbild misslyckades." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Flöden för $s vänner" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Flöde för svar till %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed för taggar %s" @@ -930,7 +1073,7 @@ msgstr "Sök innehåll i inlägg" msgid "Find people on this site" msgstr "Sök personer på denna sida" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -943,6 +1086,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Ditt fulla namn." @@ -951,23 +1099,33 @@ msgstr "Ditt fulla namn." #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ditt namn är för långt (max 255 tecken)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjälp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Hem" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Hemsida" @@ -975,21 +1133,27 @@ msgstr "Hemsida" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Hemsidan har ingen giltig URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Jag vill posta inlägg via min email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adress" @@ -999,7 +1163,7 @@ msgid "IM Settings" msgstr "IM inställningar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1007,7 +1171,7 @@ msgstr "" "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " "att koppla det till ditt OpenID" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1015,7 +1179,7 @@ msgstr "" "Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck " "på \"Add\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1026,25 +1190,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Inkommande email" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Inkommande emailadress borttagen." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Felaktigt, gammalt lösenord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Felaktigt användarnamn eller lösenord." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1053,30 +1223,31 @@ msgstr "" "postadress " #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ogiltig användarbild URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ogiltig emailadress: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ogiltig hemsideadress '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ogiltig licens URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ogiltig innehåll i inlägget " @@ -1091,13 +1262,13 @@ msgid "Invalid notice url" msgstr "Ogiltig inlägg url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ogiltig profil URL '%s' " #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Nåt är fel med profil URL (Format fel)" @@ -1115,44 +1286,52 @@ msgstr "Felaktig storlek" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Felaktigt användarnamn eller lösenord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Inbjudan(ar) skickad" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Inbjudan(ar) är skickade till följande personer:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Bjud in" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Bjud in nya användare" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Det drivs med [StatusNet](http://status.net/) mikroblogging software, version %" -"s, tillgängligt under [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " +"version %s, tillgängligt under [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID används redan utav en annan användare." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1162,12 +1341,14 @@ msgstr "" "att lägga till %s i din vännerlista i IM klienten eller GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Språket är för långt(max 50 tecken)." @@ -1176,7 +1357,15 @@ msgstr "Språket är för långt(max 50 tecken)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Plats" @@ -1185,7 +1374,12 @@ msgstr "Plats" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Platse är för lång (max 255 tecken)." @@ -1194,18 +1388,22 @@ msgstr "Platse är för lång (max 255 tecken)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logga in" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logga in med ett [OpenID](%%doc.openid%%) konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1216,22 +1414,26 @@ msgstr "" "[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" "action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logga ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Långt namn, förslagsvis ditt \"riktiga\" namn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Glömt bort lösenord?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Skapa en ny emailadress för att posta till, avaktiverar den gamla" @@ -1242,16 +1444,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Ställ in hur du tar emot email ifrån %%site.name%%" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem sedan" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1264,42 +1468,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Min text och filer finns tillgängliga under" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Ny emailadress för att skicka till %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Ny inkommande emailadress inlagd." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt användarnamn" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nytt inlägg" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt lösenord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." @@ -1309,7 +1521,13 @@ msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Smeknamn" @@ -1318,7 +1536,12 @@ msgstr "Smeknamn" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Användarnamnet används redan, försök med ett annat." @@ -1327,48 +1550,59 @@ msgstr "Användarnamnet används redan, försök med ett annat." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Inget giltigt smeknamn." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Smeknamnet på användaren du vill följa" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Smeknamn eller epost" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nej" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Inget Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ingen rättighet förfrågan!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Ingen operatör vald." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Ingen kod är ifylld" @@ -1380,11 +1614,15 @@ msgstr "Ingen bekräftelsekod." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Inget innehåll!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen emailadress." @@ -1393,7 +1631,9 @@ msgid "No id." msgstr "Inget id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ingen inkommande emailadress." @@ -1404,6 +1644,7 @@ msgstr "Inget smeknamn lämnades ut av fjärrservern." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Inget användarnamn" @@ -1411,12 +1652,14 @@ msgstr "Inget användarnamn" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ingen väntande bekräftelse att avbryta." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Inget telefonnummer." @@ -1426,7 +1669,8 @@ msgid "No profile URL returned by server." msgstr "Ingen profil URL lämnades ut av servern." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ingen registrerad epost adress för den användaren." @@ -1438,7 +1682,7 @@ msgstr "Ingen begäran funnen!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Inget resultat" @@ -1449,12 +1693,16 @@ msgstr "Ingen storlek" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Ingen status hittad med det ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Ingen status med det ID hittades." @@ -1464,13 +1712,15 @@ msgid "No such OpenID." msgstr "Det existerar inget sådant OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Inget sådant dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Inget sådant inlägg." @@ -1508,12 +1758,22 @@ msgstr "Ingen sådan prenumeration" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Ingen sådan användare" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Ingen användare med den emailadressen eller användarnamn." @@ -1527,32 +1787,38 @@ msgid "Not a recovery code." msgstr "Det är ingen kod för återställning." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Inte registrerad användare." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Ingen support för det formatet." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Det är inget giltigt Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Det är inget giltigt OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ingen giltig emailadress" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Det är ingen giltig epost adress." @@ -1560,6 +1826,11 @@ msgstr "Det är ingen giltig epost adress." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Det är inget giltigt användarnamn." @@ -1579,7 +1850,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Det verkar inte vara en bildfil, annars korrupt." @@ -1590,11 +1862,13 @@ msgstr "Inte tillstånd ännu." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Väntade mig inte detta svar!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Hittades inte" @@ -1610,11 +1884,15 @@ msgstr "Hittades inte" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Inte inloggad." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ingen prenumerant!" @@ -1631,39 +1909,44 @@ msgid "Notice feed for %s" msgstr "Inlägg flöde för %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Inlägget har ingen profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Inlägg" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Inlägg taggade med %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gammalt lösenord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID konto setup" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID skicka automatiskt" @@ -1671,29 +1954,34 @@ msgstr "OpenID skicka automatiskt" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID inloggning" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID bekäftelse ångrad." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID bekräftelse misslyckad: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID misslyckades: %s" @@ -1709,11 +1997,12 @@ msgid "OpenID settings" msgstr "OpenID inställningar" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Om du vill, skriv ett personligt meddelande med inbjudan." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Bitvis uppladdad." @@ -1723,34 +2012,46 @@ msgstr "Bitvis uppladdad." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Lösenord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Lösenord och bekräftelse matchar inte." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Lösenordet måste vara 6 tecken eller fler." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Förfrågan om återställning av lösenord" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Lösenord är sparat." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Lösenorden matchar inte." @@ -1770,14 +2071,17 @@ msgid "People search" msgstr "Sökning personer" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personligt meddelande" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" @@ -1792,7 +2096,7 @@ msgstr "" "prenumerera på någons inlägg, klicka på \"Cancel\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." @@ -1801,7 +2105,9 @@ msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Inställningar" @@ -1810,42 +2116,52 @@ msgstr "Inställningar" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Inställningar sparade." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Språkval" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Sekretesspolicy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Det var ett problem när inlägget sparades." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil inställningar" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Okänd profil" @@ -1854,17 +2170,19 @@ msgid "Public Stream Feed" msgstr "Publik ström" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Publik tidslinje" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicera ett MicroID för min Jabber/GTalk adress." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicera ett MicroID för min emailadress." @@ -1874,12 +2192,14 @@ msgid "Recent Tags" msgstr "Tidigare taggar" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Återställ" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Återställ lösenord" @@ -1892,37 +2212,45 @@ msgstr "Kod för återställning av okänd användare." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrering är inte möjlig." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registreringen är genomförd" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Avvisa" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Kom ihåg mig" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Fjärrprofil utan motsvarande profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Fjärrprenumerera" @@ -1936,6 +2264,9 @@ msgstr "Fjärrprenumerera" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Ta bort" @@ -1944,7 +2275,7 @@ msgstr "Ta bort" msgid "Remove OpenID" msgstr "Ta bort OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1953,34 +2284,41 @@ msgstr "" "bort den, lägg till en annan OpenID först." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svarat på %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Återställ" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Återställ lösenord" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Telefonnummer" @@ -1989,17 +2327,18 @@ msgstr "SMS Telefonnummer" msgid "SMS Settings" msgstr "SMS Inställningar" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS Bekräftelse" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Samma som lösenordet ovan" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." @@ -2012,12 +2351,21 @@ msgstr "Samma som lösenordet ovan. Måste fyllas i." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Spara" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Sök" @@ -2027,7 +2375,7 @@ msgid "Search Stream Feed" msgstr "Sök strömflöde" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2036,7 +2384,7 @@ msgstr "" "Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " "mellanslag; dom måste vara minst tre tecken långa." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2046,33 +2394,38 @@ msgstr "" "Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Välj en operatör" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Skicka" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Skicka email till denna adress för att posta ett nya inlägg." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Skicka meddelande till mig via email vid nya prenumerationer." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Skicka inlägg till mig via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2081,17 +2434,20 @@ msgstr "" "debitera mig." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Skicka svar till mig via Jabber/GTalk från personer som inte jag " "prenumererar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Inställningar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Inställningar sparade." @@ -2111,27 +2467,32 @@ msgid "Something weird happened." msgstr "Någonting konstigt inträffade." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Ledsen, men inga inkommande email är tillåtna." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Ledsen, men det är inte din inkommande emailadress." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Källa" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistik" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Sparade OpenID kunde inte hittas." @@ -2139,24 +2500,28 @@ msgstr "Sparade OpenID kunde inte hittas." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Prenumerera" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Prenumerant" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Prenumeration accepterad" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Prenumeration avvisad" @@ -2164,28 +2529,35 @@ msgstr "Prenumeration avvisad" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Prenumerationer" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfel när filen laddades upp." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Taggar" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Text sökning" @@ -2205,6 +2577,7 @@ msgid "That confirmation code is not for you!" msgstr "Den bekräftelsekoden är inte för dig!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Den emailadressen tillhör redan en annan användare." @@ -2214,63 +2587,73 @@ msgid "That file is too big." msgstr "Filen är för stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det är redan din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det är redan din emailadress." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det är redan ditt telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det är inte ditt Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det är inte din emailadress." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det är inte ditt telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det är fel IM adress." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Det är fel nummer i bekräftelsen" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Det numret tillhör en annan användare." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "För långt. Maximalt 140 tecken" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Det är för långt. Max antal tecken är 255." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." @@ -2279,11 +2662,14 @@ msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adressen är borttagen." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2293,7 +2679,8 @@ msgstr "" "med sidans instruktioner hur du bekräftar en prenumeration. Din " "prenumerering token är:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2303,35 +2690,40 @@ msgstr "" "sidans instruktioner hur du avvisar en prenumeration." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dessa personer är dom som lyssnar på dina inlägg." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Detta är personer och inlägg som %s lyssnar på." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Detta är personer och inlägg som du lyssnar på." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Dom personerna är redan registrerade användare och du blev nu automatiskt " "prenumerant till dom:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2340,7 +2732,7 @@ msgstr "" "på skicka för att gå dit där du skapade ditt OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2355,6 +2747,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Denna metod kräver antingen skicka eller tabort." @@ -2363,25 +2758,37 @@ msgstr "Denna metod kräver antingen skicka eller tabort." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Denna metod kräver skicka." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidszon" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Du har inte valt tidszon" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2394,18 +2801,21 @@ msgstr "" "nedan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Två användarid eller namn måste läggas till." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL till din hemsida, blog eller profil på en annan sida." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil på en annan kompatibel mikroblogg" @@ -2417,15 +2827,22 @@ msgstr "URL till din profil på en annan kompatibel mikroblogg" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Oväntat utskick av formuläret." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Oväntad rensning av lösenord." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Okänd funktion" @@ -2456,38 +2873,47 @@ msgstr "Lämnar pren." #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "OMB versionen stöds inte" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Bildfilens format stödjs inte." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Uppdateringar via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via instant messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Ladda upp" @@ -2508,6 +2934,7 @@ msgid "Upload a new profile image" msgstr "Ladda upp en ny profilbild" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2515,7 +2942,9 @@ msgstr "" "sida." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Används endast för uppdateringar, annonsering och återställning av lösenord" @@ -2540,11 +2969,16 @@ msgstr "Användaren som avlyssnas existerar inte." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Användaren har ingen profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Användarens smeknamn" @@ -2553,29 +2987,33 @@ msgid "User not found." msgstr "Användare hittades inte." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Vilken tidszon befinner du dig normalt?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Vad är på gång, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Fel filtyp för bild '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Fel bildstorlek för '%s'" @@ -2583,7 +3021,9 @@ msgstr "Fel bildstorlek för '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2606,11 +3046,12 @@ msgid "You are already logged in!" msgstr "Du är redan inloggad!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du prenumererar redan på dessa användare:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Du är inte vän med den användaren." @@ -2628,7 +3069,7 @@ msgstr "Du kan skapa ett nytt konto och börja skriva inlägg." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2637,6 +3078,7 @@ msgstr "" "\"Remove\"" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2645,7 +3087,8 @@ msgstr "" "Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." "im%%). Konfigurera din adress och inställningar nedan. " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2655,21 +3098,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan använda lokala prenumerationer!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Du skickade inte oss den profilen" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2691,16 +3136,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Du kan inte tabort nån annan användares status." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2708,20 +3156,21 @@ msgstr "" "du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " "registrerar sig. Tack för att du hjälper oss växa!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Din OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ditt användarnamn på denna server eller registrerad epost adress." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2730,47 +3179,57 @@ msgstr "" "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " "Ställ in ditt OpenID konto härifrån." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "för en dag sedan" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "för nån minut sedan" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "för en månad sedan" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "för ett år sedan" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "för en timma sedan" @@ -2792,12 +3251,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "samma som lösenordet ovan" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "okänd fil typ" @@ -2819,6 +3280,26 @@ msgstr "« Nyare" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Det var något problem med din session. Försök igen, tack." @@ -2827,6 +3308,7 @@ msgid "This notice is not a favorite!" msgstr "Det inlägget är ingen favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kunde inte tabort favoriten." @@ -2834,22 +3316,28 @@ msgstr "Kunde inte tabort favoriten." msgid "Favor" msgstr "Favorisera" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Skicka mig ett email när någon lägger till mitt inlägg som favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Skicka mig ett email när någon sänder ett privat meddelande." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Detta inlägg är redan en favorit!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." @@ -2859,11 +3347,13 @@ msgstr "Avfavorisera" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s favoriter" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed över %s favoriter" @@ -2905,33 +3395,44 @@ msgid "Login with your username and password. " msgstr "Logga in med ditt användarnamn och lösenord." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Det är för långt. Max är 140 tecken. " #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Ingen mottagare tillagd." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kan inte skicka meddelande till den användaren." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Ingen sådan användare" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nytt meddelande" @@ -2986,6 +3487,11 @@ msgstr "Du kan uppdatera din personliga profil här" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Användare utan matchande profil" @@ -3014,6 +3520,8 @@ msgid "New password successfully saved. " msgstr "Nya lösenordet är sparat." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Lösenordet måste vara minst 6 tecken." @@ -3035,12 +3543,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "För att prenumerera så kan du [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed för %s favoriter" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunde inte ta emot favoritinläggen." @@ -3048,7 +3559,7 @@ msgstr "Kunde inte ta emot favoritinläggen." msgid "No such message." msgstr "Inget sådant meddelande." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." @@ -3072,52 +3583,71 @@ msgid "Mobile carrier for your phone. " msgstr "Mobiloperatören för din telefon." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direktmeddelande till %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alla direktmeddelanden skickade till %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Direktmeddelanden du skickat" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alla direktmeddelanden skickade ifrån %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Ingen meddelande text!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Mottagaren kunde inte hittas." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Kan inte skicka direktmeddelanden till användare som inte är dina vänner." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoriter från %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s uppdaterade favoriter av %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s la till ditt inlägg som favorit" @@ -3140,14 +3670,17 @@ msgstr "" "Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter inställningar" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter konto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Verifierat Twitter konto." @@ -3156,6 +3689,7 @@ msgid "Twitter Username" msgstr "Twitter användarnamn" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Inga mellanslag tack." @@ -3164,18 +3698,22 @@ msgid "Twitter Password" msgstr "Twitter lösenord" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Skicka automatiskt mina inlägg till Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Skicka lokala \"@\" svar till Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Prenumerera på mina Twitter vänner här." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3184,6 +3722,7 @@ msgstr "" "underscore(_). 15 tecken max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Kunde inte verifiera din Twitter!" @@ -3194,33 +3733,43 @@ msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Kunde inte spara dina Twitter inställningar!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter inställningar sparade." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Det är inte ditt Twitter konto." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Kunde inte tabort Twitter användaren." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitterkontot borttaget." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Kunde inte spara Twitter inställningar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3237,18 +3786,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3258,89 +3808,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Plats: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Om: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3348,11 +3920,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3367,7 +3939,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3379,7 +3951,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3388,31 +3960,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3425,14 +4005,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s med vänner" @@ -3443,22 +4028,32 @@ msgid "You can upload your personal avatar." msgstr "Du kan uppdatera din personliga profil här" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Twitter inställningar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3476,38 +4071,47 @@ msgid "There was a problem with your session token. " msgstr "Det var något problem med din session. Försök igen, tack." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Inget sådant inlägg." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "okänd fil typ" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 #, fuzzy msgid "No profile specified." msgstr "Ingen mottagare tillagd." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "Ingen status hittad med det ID" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Ingen sådan användare" @@ -3517,12 +4121,12 @@ msgstr "Ingen sådan användare" msgid "Are you sure you want to block this user? " msgstr "Är du säker på att du vill tabort detta inlägg?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Du prenumererar redan på dessa användare:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3543,42 +4147,60 @@ msgstr "" msgid "Add to favorites" msgstr "Feed för %s favoriter" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 #, fuzzy msgid "You must be logged in to create a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Inget användarnamn" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Ingen sådan användare" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 #, fuzzy msgid "You must be an admin to edit the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3589,16 +4211,17 @@ msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Biografin är för lång (max 140 tecken)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kunde inte uppdatera användare." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Inställningar sparade." @@ -3618,7 +4241,8 @@ msgstr "Ny emailadress för att skicka till %s" msgid "Send me email when someone " msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3634,7 +4258,7 @@ msgstr "" "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " "godkänna att %s får skicka meddelanden till dig." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3648,55 +4272,70 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Inget innehåll!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Nyare" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Tidigare »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Inbjudan(ar) är skickade till följande personer:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du är identifierad. Skriv in" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Flöden för $s vänner" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3745,13 +4384,15 @@ msgstr "" msgid "Sync preferences" msgstr "Inställningar" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Avfavorisera" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Inget sådant inlägg." @@ -3767,7 +4408,8 @@ msgid "The most popular notices on the site right now." msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3781,15 +4423,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3797,12 +4441,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Användarbilden uppdaterad." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Uppdatering av profilbild misslyckades." @@ -3822,7 +4468,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3837,6 +4484,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Skapa ett nytt konto" @@ -3848,7 +4496,7 @@ msgid "" msgstr "" "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Sökning personer" @@ -3873,22 +4521,22 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Ingen bekräftelsekod." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du prenumererar redan på dessa användare:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoriter från %s" @@ -3897,17 +4545,20 @@ msgstr "%s / Favoriter från %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Inget sådant meddelande." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Du skickade inte oss den profilen" @@ -3917,22 +4568,26 @@ msgstr "Du skickade inte oss den profilen" msgid "You may not leave a group while you are its administrator." msgstr "Du kan inte tabort nån annan användares status." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Kunde inte uppdatera användarens inställningar." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3944,16 +4599,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Kunde inte skapa favorit." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Kunde inte skapa prenumeration." @@ -3968,12 +4625,15 @@ msgstr "Filen är för stor." msgid "Don't send a message to yourself; " msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Inlägg" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3990,7 +4650,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID inloggning" @@ -4018,11 +4678,13 @@ msgstr "" msgid "Service" msgstr "Sök" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Språket är för långt(max 50 tecken)." @@ -4032,17 +4694,18 @@ msgstr "Språket är för långt(max 50 tecken)." msgid "Change your password." msgstr "Ändra ditt lösenord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Lösenord är sparat." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ingen giltig emailadress" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -4052,12 +4715,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Okänd profil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4070,21 +4734,26 @@ msgstr "" "mänsklig användare) " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Kunde inte spara profil." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Publik tidslinje" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "Kunde inte ta emot favoritinläggen." @@ -4106,11 +4775,13 @@ msgstr "Publik ström" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4171,7 +4842,8 @@ msgstr "(Du kommer inom kort få ett email med" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Svarat på %s" @@ -4181,53 +4853,74 @@ msgstr "Svarat på %s" msgid "%s favorite notices, page %d" msgstr "%s favoriter" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Inget sådant inlägg." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Inlägg" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Inlägg flöde för %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Medlem sedan" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4243,7 +4936,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Inbox för %s - sida %d" @@ -4254,35 +4947,42 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Användaren har ingen profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Okänd funktion" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nytt meddelande" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Prenumerant" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4308,7 +5008,7 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Väntar bekräftelse på detta telefonnummer. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Välj en operatör" @@ -4373,17 +5073,18 @@ msgstr "Detta är personer och inlägg som %s lyssnar på." msgid "These are the people whose " msgstr "Dessa personer är dom som lyssnar på %s inlägg." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Inget Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Inlägg taggade med %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4408,7 +5109,7 @@ msgstr "Taggar" msgid "Tag user" msgstr "Taggar" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4419,17 +5120,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kunde inte spara informationen om användarbild" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4438,20 +5139,23 @@ msgstr "" msgid "No such tag." msgstr "Inget sådant meddelande." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Inlägg taggade med %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Hittades inte" @@ -4463,17 +5167,18 @@ msgstr "" "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " "Twitter," -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Twitter användarnamn" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Twitter lösenord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Twitter inställningar" @@ -4487,158 +5192,167 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fel uppstog när användaren skulle sparas." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Ingen profil URL lämnades ut av servern." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Ingen status hittad med det ID" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Lämnar pren." -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Det var ett problem när inlägget sparades." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Uppdatering av profilbild misslyckades." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s(%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Om" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Ändra ditt lösenord" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Skapa ett nytt konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Det existerar inget sådant OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hjälp" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nytt inlägg" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nytt inlägg" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Prenumerationer" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ingen sådan användare" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4652,12 +5366,15 @@ msgstr "%s favoriter" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Skapa ett nytt konto" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Publik" @@ -4680,35 +5397,40 @@ msgstr "Feed för taggar %s" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Taggar" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL till din hemsida, blog eller profil på en annan sida." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Prenumerationer" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4718,21 +5440,21 @@ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logga ut" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4765,12 +5487,12 @@ msgstr "Logga in" msgid "Leave" msgstr "Spara" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Logga in med ditt användarnamn och lösenord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Skapa ett nytt konto" @@ -4791,24 +5513,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Plats: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hemsida: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, fuzzy, php-format msgid "You've been nudged by %s" msgstr "Du är identifierad. Skriv in" @@ -4823,47 +5545,55 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "från" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Tabort inlägg" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Skicka ett meddelande" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Minst 6 tecken" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "svar till..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Svara på detta inlägg" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Ta bort inlägg" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Ta bort" @@ -4886,28 +5616,30 @@ msgstr "Du kan inte skicka meddelande till den användaren." msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Publik" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Tidigare taggar" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Personer" @@ -4926,34 +5658,36 @@ msgstr "Sök personer på denna sida" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Fjärrprenumerera" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Fjärrprenumerera" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" "Använd detta formulär för att bjuda in dina vänner och kollegor till denna " "sida." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Användaren har ingen profil." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Prenumerera på mina Twitter vänner här." @@ -4968,11 +5702,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Ingen sådan användare" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4980,6 +5715,2041 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s med vänner" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan uppdatera din personliga profil här" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Användarbilden uppdaterad." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Det var något problem med din session. Försök igen, tack." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Skicka mig ett email när någon sänder ett privat meddelande." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Sök i strömmen efter \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " +"du ändrar dina inställningar." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Publik ström" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Publik ström" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Publik ström" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Skapa" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Inget sådant inlägg." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox för %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Användarbild" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil inställningar" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Ingen sådan användare" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " +"Twitter," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " +"att koppla det till ditt OpenID" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s lyssnar nu på dina meddelanden i %1$s.\n" +"\n" +"\tHälsningar,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Sök" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Inget sådant dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ingen sådan användare" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Användaren har ingen profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vänner" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ingen sådan användare" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekräftelsekod" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan inte ta bort detta inlägg." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ogiltig hemsideadress '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Användarnamnet används redan, försök med ett annat." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunde inte skapa favorit." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt inlägg" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt inlägg" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Det är inget giltigt användarnamn." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen mottagare tillagd." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Användaren har ingen profil." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du skickade inte oss den profilen" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ingen sådan användare" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kunde inte uppdatera användare." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Kunde inte spara dina Twitter inställningar!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Inställningar sparade." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Inget resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Användaren har ingen profil." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nytt meddelande" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kunde inte spara profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " +"Ställ in ditt OpenID konto härifrån." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil inställningar" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " +"till den emailadress du sparat till ditt konto." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Förfrågan om återställning av lösenord" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fel uppstog med bekräftelsekoden." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Prenumerera på mina Twitter vänner här." + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoriter" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ingen sådan användare" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Inlägg taggade med %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Detta inlägg är redan en favorit!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Det inlägget är ingen favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kunde inte ta emot favoritinläggen." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Ingen mottagare tillagd." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kunde inte få fram status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Uppdateringar med svar till %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alla prenumerationer" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil inställningar" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du skickade inte oss den profilen" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Det var ett problem när inlägget sparades." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Meddelande till %1$s på %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Användaren har ingen profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Ladda upp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändra ditt lösenord" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Anslut" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Sök" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logga in" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Ingen sådan användare" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Ingen sådan användare" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Inget innehåll!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Sök" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Hemsidan har ingen giltig URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Inget sådant meddelande." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direktmeddelande till %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det är för långt. Max är 140 tecken. " + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du prenumererar redan på dessa användare:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du skickade inte oss den profilen" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s / Favoriter från %s" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Sök personer på denna sida" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "För långt. Maximalt 140 tecken" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Bildfilens format stödjs inte." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Användaren som avlyssnas existerar inte." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Inte tillstånd ännu." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Okänd version av OMB protokollet." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Inget sådant inlägg." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Inget sådant inlägg." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " +"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Kunde inte få en förfrågan token." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Meddelande till %1$s på %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Inlägg flöde för %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Inlägg" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " +"med sidans instruktioner hur du bekräftar en prenumeration. Din " +"prenumerering token är:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " +"sidans instruktioner hur du avvisar en prenumeration." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan inte läsa användarbild URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Fel filtyp för bild '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Kunde inte skicka vidare till servern: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Sök innehåll i inlägg" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svara på detta inlägg" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Det var ett problem när inlägget sparades." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen bekräftelsekod." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Välj en operatör" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Inlägg flöde för %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la till ditt inlägg som favorit" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "från" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kunde inte tabort favoriten." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Tabort inlägg" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Kunde inte tabort favoriten." diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index 5cfa0c3fb5deb5672a1d9547ed7610a58f4515f3..69f2d9a4ac13cb7227f757cab22b5f3c640d546e 100644 GIT binary patch delta 14731 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 delta 9002 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\n" "Language-Team: LANGUAGE \n" @@ -24,14 +24,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "\"%s\"కై అన్వేషణ వాహిని" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." @@ -42,17 +42,19 @@ msgid " from " msgstr " నుండి " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -84,6 +86,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -100,25 +103,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s ప్రజా వాహిని" @@ -128,40 +134,55 @@ msgstr "%s ప్రజా వాహిని" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s స్థితి" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -170,7 +191,8 @@ msgstr "" "[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " "అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." @@ -182,30 +204,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -213,6 +239,7 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -242,7 +269,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -265,16 +319,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "గురించి" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "అంగీకరించు" @@ -285,6 +346,9 @@ msgstr "అంగీకరించు" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "చేర్చు" @@ -302,27 +366,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "చిరునామా" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "అన్ని చందాలు" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s కోసం అన్ని తాజాకరణలూ" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" @@ -332,30 +398,37 @@ msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణ #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "ఇప్పటికే చేరారు!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -363,15 +436,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "అవతారం" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -379,13 +456,14 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -397,6 +475,8 @@ msgstr "ఇంతక్రితం »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "స్వపరిచయం" @@ -404,16 +484,18 @@ msgstr "స్వపరిచయం" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "ఈ నోటీసుని తొలగించలేము." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "" @@ -421,6 +503,8 @@ msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." @@ -428,31 +512,34 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "రద్దుచేయి" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "మార్చు" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -462,11 +549,12 @@ msgid "Change password" msgstr "సంకేతపదం మార్చుకోండి" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -476,6 +564,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "నిర్థారించు" @@ -488,12 +579,14 @@ msgstr "చిరునామాని నిర్ధారించు" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "నిర్ధారణ రద్దయింది." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -502,7 +595,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -522,20 +616,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "అనుసంధానించు" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "ఇప్పటికే ఉన్న ఖాతాతో అనుసంధానించండి" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "సంప్రదించు" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" @@ -543,35 +641,39 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "కొత్త ప్రొఫైలు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -591,15 +693,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -612,29 +716,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -650,42 +763,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "సృష్టించు" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -694,23 +813,27 @@ msgid "Currently" msgstr "ప్రస్తుతం" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" @@ -718,11 +841,13 @@ msgstr "మీ గురించి మరియు మీ ఆసక్తు #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "ఈమెయిల్" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "ఈమెయిల్ చిరునామా" @@ -732,39 +857,43 @@ msgid "Email Settings" msgstr "ఈమెయిల్ అమరికలు" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "వాడుకరిని ఓపెన్ఐడీకి అనుసంధానించటంలో పొరపాటు." @@ -775,40 +904,47 @@ msgstr "వాడుకరిని అనుసంధానించడంల #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 #, fuzzy msgid "Error inserting avatar" msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "చిరునామా నిర్ధారణని భద్రపరచడంలో పొరపాటు." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "దూరపు ప్రొఫైలుని భద్రపరచడంలో పొరపాటు" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "ప్రొఫైలుని భద్రపరచడంలో పొరపాటు." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." @@ -817,6 +953,9 @@ msgstr "వాడుకరిని భద్రపరచడంలో పొర #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -827,6 +966,7 @@ msgstr "ప్రొపైలుని తాజాకరించటంలో #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" @@ -836,34 +976,37 @@ msgid "Error with confirmation code." msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "ప్రస్తుత పేరు" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 #, fuzzy msgid "FAQ" msgstr "తవసం" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "అవతారపు తాజాకరణ విఫలమైంది." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s యొక్క మిత్రుల ఫీడు" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%sకి వచ్చిన స్పందనల ఫీడు" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -878,7 +1021,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -890,6 +1033,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "పూర్తి పేరు" @@ -898,16 +1046,24 @@ msgstr "పూర్తి పేరు" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "సహాయం" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 #, fuzzy msgid "Home" msgstr "వాకిలి" @@ -915,7 +1071,9 @@ msgstr "వాకిలి" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 #, fuzzy msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -924,21 +1082,27 @@ msgstr "హోమ్ పేజీ" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM చిరునామా" @@ -948,7 +1112,7 @@ msgid "IM Settings" msgstr "IM అమరికలు" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -956,13 +1120,13 @@ msgstr "" "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " "జతచేసుకోండి." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -971,55 +1135,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "పాత సంకేతపదం తప్పు" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "'%s' అనే అవతారపు URL తప్పు" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "తప్పుడు లైసెన్సు URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "సందేశపు విషయం సరైనది కాదు" @@ -1034,13 +1205,13 @@ msgid "Invalid notice url" msgstr "సందేశపు URL తప్పు" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "ప్రొపైల్ URL '%s' తప్పు." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" @@ -1058,28 +1229,35 @@ msgstr "తప్పుడు పరిమాణం." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "ఆహ్వానించు" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1088,11 +1266,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1100,12 +1279,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "భాష" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1114,7 +1295,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "ప్రాంతం" @@ -1123,7 +1312,12 @@ msgstr "ప్రాంతం" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." @@ -1132,18 +1326,22 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "ప్రవేశించండి" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[ఓపెన్ఐడీ](%%doc.openid%%) ఖాతాతో ప్రవేశించండి." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1151,22 +1349,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "నిష్క్రమించు" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "మీ సంకేతపదం మర్చిపోయారా?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1177,16 +1379,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "సభ్యులైన తేదీ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, fuzzy, php-format msgid "Microblog by %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1196,42 +1400,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "కొత్త పేరు" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "కొత్త సందేశం" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." @@ -1241,7 +1453,13 @@ msgstr "మీ కొత్త సంకేతపదం భద్రమైంద #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "పేరు" @@ -1250,7 +1468,12 @@ msgstr "పేరు" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." @@ -1259,47 +1482,58 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "ఆ పేరుని అనుమతించము." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "పేరు లేదా ఈమెయిల్" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID లేదు." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1311,11 +1545,15 @@ msgstr "నిర్ధారణ సంకేతం లేదు." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "విషయం లేదు!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1324,7 +1562,9 @@ msgid "No id." msgstr "ఐడీ లేదు." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1335,6 +1575,7 @@ msgstr "దూరపు సర్వర్ పేరుని ఇవ్వలే #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 #, fuzzy msgid "No nickname." msgstr "పేరు లేదు." @@ -1343,12 +1584,14 @@ msgstr "పేరు లేదు." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1358,7 +1601,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." @@ -1370,7 +1614,7 @@ msgstr "అభ్యర్థనలేమీ కనబడలేదు!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "ఫలితాలేమీ లేవు" @@ -1381,12 +1625,16 @@ msgstr "పరిమాణం లేదు." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1396,13 +1644,15 @@ msgid "No such OpenID." msgstr "అటువంటి ఓపెన్ఐడీ లేదు." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "అటువంటి పత్రమేమీ లేదు." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." @@ -1440,12 +1690,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1459,32 +1719,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "సరైన Jabber ఐడీ కాదు" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "సరైన ఓపెన్ఐడీ కాదు." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" @@ -1492,6 +1758,11 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." @@ -1511,7 +1782,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." @@ -1522,11 +1794,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1542,11 +1816,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1563,40 +1841,45 @@ msgid "Notice feed for %s" msgstr "%s యొక్క సందేశముల ఫీడు" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "సందేశాలు" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "పాత సంకేతపదం" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "ఓపెన్ఐడీ" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 #, fuzzy msgid "OpenID Account Setup" msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1604,29 +1887,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "ఓపెన్ఐడీ ప్రవేశం" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "ఓపెన్ఐడీ URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "ఓపెన్ఐడీ అధీకరణ రద్దు చేయబడింది." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "ఓపెన్ఐడీ అధీకరణ విఫలమైంది: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "ఓపెన్ఐడీ వైఫల్యం: %s" @@ -1642,11 +1930,12 @@ msgid "OpenID settings" msgstr "ఓపెన్ఐడీ అమరికలు" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "పాక్షిక ఎగుమతి." @@ -1656,34 +1945,46 @@ msgstr "పాక్షిక ఎగుమతి." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "సంకేతపదం" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "సంకేతపదాలు సరిపోలలేదు." @@ -1703,14 +2004,17 @@ msgid "People search" msgstr "వ్యక్తుల అన్వేషణ" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "వ్యక్తిగత" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1722,7 +2026,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1731,7 +2035,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "అభిరుచులు" @@ -1740,42 +2046,52 @@ msgstr "అభిరుచులు" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "అంతరంగికత" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "ప్రొఫైలు" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "ప్రొఫైలు URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "ఫ్రొఫైలు అమరికలు" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "అజ్ఞాత ప్రొఫైలు" @@ -1784,17 +2100,19 @@ msgid "Public Stream Feed" msgstr "ప్రజా వాహిని ఫీడు" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1804,12 +2122,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1822,37 +2142,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "తిరస్కరించు" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1866,6 +2194,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "తొలగించు" @@ -1874,7 +2205,7 @@ msgstr "తొలగించు" msgid "Remove OpenID" msgstr "ఓపెన్ఐడీని తొలగించండి" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1883,34 +2214,41 @@ msgstr "" "ముందు వేరే ఓపెన్ఐడీని చేర్చండి." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "స్పందనలు" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%sకి స్పందనలు" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1919,17 +2257,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "పై సంకేతపదం వలెనే" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1942,12 +2281,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "వెతుకు" @@ -1957,7 +2305,7 @@ msgid "Search Stream Feed" msgstr "అన్వేషణ వాహిని ఫీడు" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1966,7 +2314,7 @@ msgstr "" "%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " "అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1976,48 +2324,56 @@ msgstr "" "ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "పంపించు" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "అమరికలు" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -2037,27 +2393,32 @@ msgid "Something weird happened." msgstr "జరగకూడనిదేదో జరిగింది." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "మూలము" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "గణాంకాలు" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2065,24 +2426,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "చందాదార్లు" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." @@ -2090,28 +2455,35 @@ msgstr "చందాని తిరస్కరించారు." #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "చందాలు" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "పాఠ్యం" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "పాఠ్య అన్వేషణ" @@ -2131,6 +2503,7 @@ msgid "That confirmation code is not for you!" msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." @@ -2140,63 +2513,73 @@ msgid "That file is too big." msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." @@ -2205,18 +2588,22 @@ msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి న #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "ఆ చిరునామాని తొలగించాం." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2224,40 +2611,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2269,6 +2661,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2277,25 +2672,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2304,18 +2711,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2327,15 +2737,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2364,38 +2781,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "ఎగుమతించు" @@ -2412,12 +2838,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." @@ -2441,11 +2870,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "వాడుకరి పేరు" @@ -2454,29 +2888,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "%s, సంగతులేమిటి?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2484,7 +2922,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "అవును" @@ -2505,11 +2945,12 @@ msgid "You are already logged in!" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2527,20 +2968,22 @@ msgstr "సందేశాలు పంపించడానికి మీర msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "\"తొలగించు\" అనే బొత్తంపై నొక్కడం ద్వారా ఒక ఓపెన్ఐడీని మీ ఖాతా నుండి తొలగించుకోవచ్చు." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2549,21 +2992,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2577,35 +3022,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "మీ ఓపెన్ఐడీ URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2614,47 +3063,57 @@ msgstr "" "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " "ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" @@ -2676,12 +3135,14 @@ msgid "reply" msgstr "స్పందించు" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "పై సంకేతపదం వలెనే" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2703,6 +3164,26 @@ msgstr "« తర్వాత" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2711,6 +3192,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2718,22 +3200,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2743,11 +3231,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2787,33 +3277,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2867,6 +3368,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2895,6 +3401,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2915,12 +3423,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2928,7 +3439,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2952,51 +3463,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3015,14 +3545,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "ట్విట్టర్ అమరికలు" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "ట్విట్టర్ ఖాతా" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3031,6 +3564,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3039,24 +3573,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3067,33 +3606,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3110,18 +3659,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3131,89 +3681,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "గురించి: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3221,11 +3793,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3240,7 +3812,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3252,7 +3824,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3261,31 +3833,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "మీరు పంపిన సందేశాలు" @@ -3298,14 +3878,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s మరియు మిత్రులు" @@ -3315,22 +3900,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "ట్విట్టర్ అమరికలు" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3347,35 +3942,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "అటువంటి వాడుకరి లేరు." @@ -3384,12 +3988,12 @@ msgstr "అటువంటి వాడుకరి లేరు." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3406,40 +4010,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "పేరు లేదు." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3448,16 +4070,17 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -3475,7 +4098,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3489,7 +4113,7 @@ msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేక msgid "A confirmation code was sent to the email address you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3503,54 +4127,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "విషయం లేదు!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« తర్వాత" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "ఇంతక్రితం »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3596,12 +4235,14 @@ msgstr "" msgid "Sync preferences" msgstr "అభిరుచులు" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "అటువంటి సందేశమేమీ లేదు." @@ -3616,7 +4257,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3630,15 +4272,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3646,12 +4290,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "అవతారాన్ని తాజాకరించాం." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "అవతారపు తాజాకరణ విఫలమైంది." @@ -3671,7 +4317,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3686,6 +4333,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -3698,7 +4346,7 @@ msgstr "" "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " "ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "వ్యక్తుల అన్వేషణ" @@ -3721,21 +4369,21 @@ msgstr "" msgid "A confirmation code was sent " msgstr "నిర్ధారణ సంకేతం లేదు." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3744,16 +4392,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3761,21 +4412,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3787,16 +4442,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "చందాని సృష్టించలేకపోయాం." @@ -3810,12 +4467,15 @@ msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "సందేశాలు" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3832,7 +4492,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "ఓపెన్ఐడీ ప్రవేశం" @@ -3860,11 +4520,13 @@ msgstr "" msgid "Service" msgstr "వెతుకు" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." @@ -3874,17 +4536,18 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ msgid "Change your password." msgstr "సంకేతపదం మార్చుకోండి" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "సంకేతపదం భద్రమయ్యింది." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3894,12 +4557,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "అజ్ఞాత ప్రొఫైలు" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3909,21 +4573,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3944,11 +4613,13 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4003,7 +4674,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%sకి స్పందనలు" @@ -4013,53 +4685,74 @@ msgstr "%sకి స్పందనలు" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "సందేశాలు" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "సభ్యులైన తేదీ" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4074,7 +4767,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4085,32 +4778,39 @@ msgid "'s profile" msgstr "ప్రొఫైలు" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "చందాదార్లు" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4135,7 +4835,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4196,17 +4896,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabber ID లేదు." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4230,7 +4931,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4240,17 +4941,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4259,20 +4960,23 @@ msgstr "" msgid "No such tag." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "అభ్యర్థనలేమీ కనబడలేదు!" @@ -4281,17 +4985,18 @@ msgstr "అభ్యర్థనలేమీ కనబడలేదు!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "ట్విట్టర్ అమరికలు" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "కొత్త సంకేతపదం" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "ట్విట్టర్ అమరికలు" @@ -4305,155 +5010,164 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "చందాదార్లు" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "గురించి" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "అటువంటి ఓపెన్ఐడీ లేదు." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "సహాయం" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "కొత్త సందేశం" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "కొత్త సందేశం" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4466,12 +5180,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "ప్రజా" @@ -4493,34 +5210,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "చందాలు" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4530,21 +5252,21 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "నిష్క్రమించు" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4577,12 +5299,12 @@ msgstr "ప్రవేశించండి" msgid "Leave" msgstr "భద్రపరచు" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -4603,24 +5325,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "ప్రాంతం: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "హోమ్ పేజీ\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4635,43 +5357,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "కొత్త సందేశం" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "దీనికి స్పందనగా..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "స్పందించు" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4692,27 +5422,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ప్రజా" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "వ్యక్తుల అన్వేషణ" @@ -4730,32 +5462,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "%sకి స్పందనలు" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "చందాదార్లు" @@ -4769,11 +5503,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4781,6 +5516,1985 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s మరియు మిత్రులు" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "అవతారాన్ని తాజాకరించాం." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s యొక్క మైక్రోబ్లాగు" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\"కై అన్వేషణ వాహిని" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "సృష్టించు" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "ప్రొఫైలు" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "అవతారం" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " +"జతచేసుకోండి." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "వెతుకు" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "అటువంటి పత్రమేమీ లేదు." + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s మరియు మిత్రులు" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "ప్రాంతం" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "ఈ నోటీసుని తొలగించలేము." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "కొత్త సందేశం" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "కొత్త సందేశం" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "సరైన పేరు కాదు." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "ఫలితాలేమీ లేవు" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " +"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "సంకేతపదం భద్రమయ్యింది." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "చందాదార్లు" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "అన్ని చందాలు" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "ప్రొఫైలు" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ఎగుమతించు" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "సంకేతపదం మార్చుకోండి" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "అనుసంధానించు" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "వెతుకు" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "ప్రవేశించండి" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "అటువంటి వాడుకరి లేరు." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "అటువంటి వాడుకరి లేరు." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "విషయం లేదు!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "వాడుకరి" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "వెతుకు" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%sకి స్పందనలు" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "సందేశాలు" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "'%s' అనే అవతారపు URL తప్పు" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "కొత్త సందేశం" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%sకి స్పందనలు" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "నిర్ధారణ సంకేతం లేదు." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " నుండి " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "కొత్త సందేశం" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -4793,8 +7507,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "సందేశాన్ని చేర్చటంలో పొరపాటు" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." diff --git a/locale/tr/LC_MESSAGES/statusnet.mo b/locale/tr/LC_MESSAGES/statusnet.mo index d49c7093d3e3454108e4f41254d7c740e2df5b87..46795b44017c4a2b721d4d36645da399e4733df7 100644 GIT binary patch delta 16483 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 delta 10237 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\n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: TURKEY\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " \"%s\" için arama sonuçları" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -82,6 +84,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" @@ -104,25 +107,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Genel Durum Mesajları" @@ -132,40 +138,55 @@ msgstr "%s Genel Durum Mesajları" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s ve arkadaşları" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s durum" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -174,7 +195,8 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." @@ -186,32 +208,36 @@ msgstr "Katkı sunanlar tam ad veya takma ad ile atfedilmelidir." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 veya daha fazla karakter" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Unutmayın, 6 veya daha fazla karakter" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -221,6 +247,7 @@ msgstr "" "mesaj yollanabilmesi için onaylamanız gerekmektedir." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -250,7 +277,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -273,16 +327,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Hakkında" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Kabul et" @@ -293,6 +354,9 @@ msgstr "Kabul et" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Ekle" @@ -310,27 +374,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Bütün abonelikler" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s için bütün güncellemeler" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" @@ -340,31 +406,38 @@ msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Zaten giriş yapılmış." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Zaten abone olunmuş!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Takip isteğini onayla" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -372,15 +445,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar güncellendi." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -390,13 +467,14 @@ msgstr "" "içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -408,6 +486,8 @@ msgstr "Önce »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Hakkında" @@ -415,16 +495,18 @@ msgstr "Hakkında" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Avatar URLi '%s' okunamıyor" @@ -432,6 +514,8 @@ msgstr "Avatar URLi '%s' okunamıyor" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Yeni parola kaydedilemedi." @@ -439,31 +523,34 @@ msgstr "Yeni parola kaydedilemedi." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "İptal et" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID işlemlerinde hata oluştu." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Değiştir" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -473,11 +560,12 @@ msgid "Change password" msgstr "Parolayı değiştir" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -487,6 +575,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Onayla" @@ -499,12 +590,14 @@ msgstr "Adresi Onayla" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Onaylama iptal edildi." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -513,7 +606,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Onay kodu bulunamadı." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -533,20 +627,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Bağlan" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Varolan hesaba bağlan" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "İletişim" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID formu yaratılamadı: %s" @@ -554,35 +652,39 @@ msgstr "OpenID formu yaratılamadı: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Avatar bilgisi kaydedilemedi" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Yeni profil bilgisi kaydedilemedi" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -602,15 +704,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -624,29 +728,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -662,42 +775,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kullanıcı güncellenemedi." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Yarat" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Bu takma ad ile yeni bir kullanıcı oluştur." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Yeni hesap oluştur" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "OpenID kullanıcısı için hesap oluşturuluyor" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -706,23 +825,27 @@ msgid "Currently" msgstr "Şu anda" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Cevap eklenirken veritabanı hatası: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" @@ -730,11 +853,13 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Eposta" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -744,39 +869,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Eposta adresi zaten var." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Eposta adresi onayı" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Bir takma ad veya eposta adresi girin." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Kullanıcıyı OpenID'ye bağlarken hata oluştu." @@ -787,39 +916,46 @@ msgstr "Kullanıcı bağlamada hata oluştu." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Avatar eklemede hata oluştu" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Yeni profil eklemede hata oluştu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Uzak profil eklemede hata oluştu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Adres onayını kaydetmede hata." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Uzaktaki profili kaydetmede hata oluştu" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Profili kaydetmede hata oluştu." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Kullanıcıyı kaydetmede hata oluştu." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." @@ -828,6 +964,9 @@ msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Kullanıcı ayarlamada hata oluştu." @@ -838,6 +977,7 @@ msgstr "Profil güncellemede hata oluştu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Uzaktaki profili güncellemede hata oluştu" @@ -847,33 +987,36 @@ msgid "Error with confirmation code." msgstr "Onay kodu hatası." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Varolan takma ad" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "SSS" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Avatar güncellemede hata." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Cevaplar için RSS Beslemesi: %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -888,7 +1031,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -901,6 +1044,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Tam İsim" @@ -909,16 +1057,24 @@ msgstr "Tam İsim" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tam isim çok uzun (azm: 255 karakter)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Yardım" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Başlangıç" @@ -926,7 +1082,9 @@ msgstr "Başlangıç" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -934,21 +1092,27 @@ msgstr "Başlangıç Sayfası" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adresi" @@ -958,7 +1122,7 @@ msgid "IM Settings" msgstr "IM Ayarları" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -966,7 +1130,7 @@ msgstr "" "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " "yapıp hesabınızı OpenID'nize bağlayabilirsiniz." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -974,7 +1138,7 @@ msgstr "" "Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve " "\"Add\" düğmesine tıklayın." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -983,25 +1147,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Eski parola yanlış" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Yanlış kullanıcı adı veya parola." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1010,30 +1180,31 @@ msgstr "" "gerekli olan talimatlar yollanmıştır." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Geçersiz avatar URLi '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "%s Geçersiz başlangıç sayfası" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Geçersiz lisans URLi '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Geçersiz durum mesajı" @@ -1048,13 +1219,13 @@ msgid "Invalid notice url" msgstr "Geçersiz durum adresi" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "'%s' geçersiz profil adresi." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1072,28 +1243,35 @@ msgstr "Geçersiz büyüklük." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1105,11 +1283,12 @@ msgstr "" "microbloglama yazılımının %s. versiyonunu kullanmaktadır." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID başka bir kullanıcıya ait." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1119,12 +1298,14 @@ msgstr "" "istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1133,7 +1314,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Yer" @@ -1142,7 +1331,12 @@ msgstr "Yer" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." @@ -1151,18 +1345,22 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Giriş" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Bir [OpenID](%%doc.openid%%) hesabı ile giriş yapın." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1173,22 +1371,26 @@ msgstr "" "duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " "[OpenID](%%action.openidlogin%%) ile giriş yapın." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Çıkış" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Parolamı unuttum veya kaybettim" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1199,16 +1401,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Üyelik başlangıcı" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s adli kullanicinin durum mesajlari" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1218,42 +1422,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Yeni takma ad" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Yeni durum mesajı" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Yeni parola" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." @@ -1263,7 +1475,13 @@ msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Takma ad" @@ -1272,7 +1490,12 @@ msgstr "Takma ad" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." @@ -1281,49 +1504,60 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " "kullanılamaz. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Takma ada izin verilmiyor." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Takip etmek istediğiniz kullanıcının takma adı" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Takma ad veya eposta" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "JabberID yok." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1335,11 +1569,15 @@ msgstr "Onay kodu yok." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "İçerik yok!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1348,7 +1586,9 @@ msgid "No id." msgstr "Kullanıcı numarası yok" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1359,6 +1599,7 @@ msgstr "Uzaktaki sunucu tarafından bir takma ad sağlanmadı." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Takma ad yok" @@ -1366,12 +1607,14 @@ msgstr "Takma ad yok" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1381,7 +1624,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." @@ -1393,7 +1637,7 @@ msgstr "İstek bulunamadı!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Sonuç yok" @@ -1404,12 +1648,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1419,13 +1667,15 @@ msgid "No such OpenID." msgstr "Böyle bir OpenID yok." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Böyle bir belge yok." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." @@ -1463,12 +1713,22 @@ msgstr "Böyle bir abonelik yok" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Böyle bir kullanıcı yok." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1482,32 +1742,38 @@ msgid "Not a recovery code." msgstr "Bir geri alma kodu değil." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Geçersiz bir Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Geçersiz bir OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -1515,6 +1781,11 @@ msgstr "Geçersiz bir eposta adresi." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." @@ -1534,7 +1805,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Geçersiz profil adresi (YADIS belgesi yok)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Bu bir resim dosyası değil ya da dosyada hata var" @@ -1545,11 +1817,13 @@ msgstr "Yetkilendirilmemiş." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1565,11 +1839,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Giriş yapılmadı." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" @@ -1586,39 +1864,44 @@ msgid "Notice feed for %s" msgstr "%s için durum RSS beslemesi" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Durum mesajları" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Eski parola" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Hesabı Kurulumu" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1626,29 +1909,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Girişi" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URLi" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID yetkilendirilmesi iptal edildi." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID yetkilendirmesi başarız oldu: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID hatası: %s" @@ -1664,11 +1952,12 @@ msgid "OpenID settings" msgstr "OpenID ayarları" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Kısmi yükleme." @@ -1678,34 +1967,46 @@ msgstr "Kısmi yükleme." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Parola" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Parola ve onaylaması birbirini tutmuyor." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Parola geri alma isteği" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Parola kaydedildi." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." @@ -1725,14 +2026,17 @@ msgid "People search" msgstr "Kişi Arama" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Kişisel" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1747,7 +2051,7 @@ msgstr "" "bulunmadıysanız \"İptal\" tuşuna basın. " #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" @@ -1757,7 +2061,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Tercihler" @@ -1766,42 +2072,52 @@ msgstr "Tercihler" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Tercihler kaydedildi." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Gizlilik" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil Adresi" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil ayarları" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil bilinmiyor" @@ -1810,17 +2126,19 @@ msgid "Public Stream Feed" msgstr "Genel Durum Akış RSS Beslemesi" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Genel zaman çizgisi" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1830,12 +2148,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Geri al" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Parolanı geri al" @@ -1848,37 +2168,45 @@ msgstr "Bilinmeye kullanıcı için geri alma kodu" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Reddet" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Beni hatırla" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Uzaktan abonelik" @@ -1892,6 +2220,9 @@ msgstr "Uzaktan abonelik" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Kaldır" @@ -1900,7 +2231,7 @@ msgstr "Kaldır" msgid "Remove OpenID" msgstr "OpenID'yi kaldır" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1909,34 +2240,41 @@ msgstr "" "istiyorsanuz, önce yeni bir OpenID ekleyin" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Cevaplar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s için cevaplar" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Sıfırla" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Parolayı sıfırla" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1945,17 +2283,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "yukarıdaki parolanın aynısı" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1968,12 +2307,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Ara" @@ -1983,7 +2331,7 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1992,7 +2340,7 @@ msgstr "" "%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " "boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2003,48 +2351,56 @@ msgstr "" "karakterden oluşmalı. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Gönder" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Ayarlar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2064,27 +2420,32 @@ msgid "Something weird happened." msgstr "Garip bir şey oldu." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kaynak" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "İstatistikler" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Kaydedilmiş OpenID bulunamadı." @@ -2092,24 +2453,28 @@ msgstr "Kaydedilmiş OpenID bulunamadı." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abone ol" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abone olanlar" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Takip talebine izin verildi" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonelik reddedildi." @@ -2117,28 +2482,35 @@ msgstr "Abonelik reddedildi." #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonelikler" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Metin arama" @@ -2158,6 +2530,7 @@ msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2167,64 +2540,74 @@ msgid "That file is too big." msgstr "Dosya çok büyük." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" adresi hesabınız için onaylandı." @@ -2233,18 +2616,22 @@ msgstr "\"%s\" adresi hesabınız için onaylandı." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Bu adres kaldırılmıştı." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2252,33 +2639,38 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s adlı kullanıcının durumunu takip edenler" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Sizin durumunuzu takip edenler" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2287,7 +2679,7 @@ msgstr "" "servis sağlayıcınıza yönlenmek için düğmeye basın." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2302,6 +2694,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2310,25 +2705,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2337,19 +2744,22 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2361,15 +2771,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Beklemeğen parola sıfırlaması." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2400,38 +2817,47 @@ msgstr "Aboneliği sonlandır" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Desteklenmeyen OMB sürümü" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Yükle" @@ -2452,12 +2878,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." @@ -2482,11 +2911,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Kullanıcının profili yok." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Kullanıcı takma adı" @@ -2495,29 +2929,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "N'aber %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "%s için yanlış resim türü" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "%s'de yanlış resim boyutu" @@ -2525,7 +2963,9 @@ msgstr "%s'de yanlış resim boyutu" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2546,11 +2986,12 @@ msgid "You are already logged in!" msgstr "Zaten giriş yapmış durumdasıznız!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2569,7 +3010,7 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2577,6 +3018,7 @@ msgstr "" "\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2585,7 +3027,8 @@ msgstr "" "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " "ayarlarinizi aşağıda yapın." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2596,21 +3039,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Yerel aboneliği kullanabilirsiniz!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Bize o profili yollamadınız" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2624,35 +3069,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URLniz" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2661,47 +3110,57 @@ msgstr "" "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " "sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" @@ -2723,12 +3182,14 @@ msgid "reply" msgstr "cevapla" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "yukaridaki parola ile aynı" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2750,6 +3211,26 @@ msgstr "« Sonra" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2758,6 +3239,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2765,22 +3247,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2790,11 +3278,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2834,33 +3324,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2914,6 +3415,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2942,6 +3448,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2962,12 +3470,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2975,7 +3486,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2999,51 +3510,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3062,14 +3592,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3078,6 +3611,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3086,24 +3620,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3114,33 +3653,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3157,18 +3706,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3178,89 +3728,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3268,11 +3840,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3287,7 +3859,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3299,7 +3871,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3308,31 +3880,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3345,14 +3925,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s ve arkadaşları" @@ -3362,22 +3947,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Ayarlar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3394,35 +3989,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." @@ -3431,12 +4035,12 @@ msgstr "Böyle bir kullanıcı yok." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3453,40 +4057,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Takma ad yok" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Böyle bir durum mesajı yok." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3498,16 +4120,17 @@ msgstr "" "kullanılamaz. " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Ayarlar kaydedildi." @@ -3525,7 +4148,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3541,7 +4165,7 @@ msgstr "" "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " "mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3555,54 +4179,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "İçerik yok!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Sonra" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Önce »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3648,12 +4287,14 @@ msgstr "" msgid "Sync preferences" msgstr "Tercihler" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Böyle bir durum mesajı yok." @@ -3668,7 +4309,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3682,15 +4324,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3698,12 +4342,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar güncellendi." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Avatar güncellemede hata." @@ -3723,7 +4369,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3738,6 +4385,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Yeni hesap oluştur" @@ -3751,7 +4399,7 @@ msgstr "" "yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " "karakterden oluşmalı. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Kişi Arama" @@ -3775,21 +4423,21 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent " msgstr "Onay kodu yok." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3798,16 +4446,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Böyle bir durum mesajı yok." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" @@ -3816,21 +4467,25 @@ msgstr "Bize o profili yollamadınız" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID formu yaratılamadı: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3842,17 +4497,19 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" # Note: Bu federation ozelligi nasilsa simdi kullanilmayacak -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluşturulamadı." @@ -3866,12 +4523,15 @@ msgstr "Dosya çok büyük." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Durum mesajları" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3888,7 +4548,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID Girişi" @@ -3916,11 +4576,13 @@ msgstr "" msgid "Service" msgstr "Ara" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." @@ -3930,17 +4592,18 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." msgid "Change your password." msgstr "Parolayı değiştir" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Parola kaydedildi." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Geçersiz bir eposta adresi." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3950,12 +4613,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profil bilinmiyor" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3965,21 +4629,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Profil kaydedilemedi." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Genel zaman çizgisi" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4000,11 +4669,13 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4066,7 +4737,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s için cevaplar" @@ -4076,53 +4748,74 @@ msgstr "%s için cevaplar" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Durum mesajları" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Üyelik başlangıcı" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4137,7 +4830,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4148,32 +4841,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Kullanıcının profili yok." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4201,7 +4901,7 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent to the phone number you added. " msgstr "O onay kodu sizin için değil!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4266,17 +4966,18 @@ msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" msgid "These are the people whose " msgstr "%s adlı kullanıcının durumunu takip edenler" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "JabberID yok." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4300,7 +5001,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4310,17 +5011,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Avatar bilgisi kaydedilemedi" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4329,20 +5030,23 @@ msgstr "" msgid "No such tag." msgstr "Böyle bir durum mesajı yok." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "İstek bulunamadı!" @@ -4351,16 +5055,17 @@ msgstr "İstek bulunamadı!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Yeni parola" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4373,156 +5078,165 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Eposta onayı silinemedi." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Kullanıcıyı kaydetmede hata oluştu." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Yetkilendirme isteği yok!" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Hakkında" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Böyle bir OpenID yok." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Yardım" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4535,12 +5249,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Yeni hesap oluştur" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Genel" @@ -4562,35 +5279,40 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonelikler" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4600,21 +5322,21 @@ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Çıkış" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4647,12 +5369,12 @@ msgstr "Giriş" msgid "Leave" msgstr "Kaydet" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Geçersiz kullanıcı adı veya parola." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" @@ -4673,25 +5395,25 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" # Belki Durum Merkezi falan denebilir mi ki? -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4706,43 +5428,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Yeni durum mesajı" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 veya daha fazla karakter" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "...cevap olarak" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4763,27 +5493,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Genel" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Kişi Arama" @@ -4801,32 +5533,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Uzaktan abonelik" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Uzaktan abonelik" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Kullanıcının profili yok." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Takip talebine izin verildi" @@ -4840,11 +5574,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4852,6 +5587,2014 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s ve arkadaşları" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar güncellendi." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " \"%s\" için arama sonuçları" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " +"ve parolanızı tekrar giriniz." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Yarat" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Böyle bir durum mesajı yok." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil ayarları" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "O onay kodu sizin için değil!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Böyle bir kullanıcı yok." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Eposta onayı silinemedi." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " +"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Ara" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Böyle bir belge yok." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Kullanıcının profili yok." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ve arkadaşları" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Yer" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Böyle bir durum mesajı yok." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Avatar bilgisi kaydedilemedi" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Yeni durum mesajı" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Yeni durum mesajı" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Geçersiz bir takma ad." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bize o profili yollamadınız" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kullanıcı güncellenemedi." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Tercihler kaydedildi." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Sonuç yok" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Profil kaydedilemedi." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " +"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil ayarları" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " +"olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Parola geri alma isteği" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Onay kodu hatası." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Takip talebine izin verildi" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Böyle bir durum mesajı yok." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Böyle bir kullanıcı yok." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kullanıcı güncellenemedi." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kullanıcı güncellenemedi." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Bütün abonelikler" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil ayarları" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Bize o profili yollamadınız" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Durum mesajını kaydederken hata oluştu." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Kullanıcının profili yok." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Yükle" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Parolayı değiştir" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Bağlan" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ara" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Giriş" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Böyle bir kullanıcı yok." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Böyle bir kullanıcı yok." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "İçerik yok!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ara" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Böyle bir durum mesajı yok." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Bize o profili yollamadınız" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID formu yaratılamadı: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Desteklenmeyen görüntü dosyası biçemi." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Yetkilendirilmemiş." + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB protokolünün bilinmeğen sürümü." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Böyle bir durum mesajı yok." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Böyle bir durum mesajı yok." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geçersiz profil adresi (YADIS belgesi yok)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s için cevaplar" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s için durum RSS beslemesi" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Durum mesajları" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Avatar URLi '%s' okunamıyor" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%s için yanlış resim türü" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Yeni durum mesajı" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%s için cevaplar" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Durum mesajını kaydederken hata oluştu." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Onay kodu yok." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s için durum RSS beslemesi" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Yeni durum mesajı" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Yeni hesap oluştur" @@ -4864,10 +7607,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Durum gönderilirken hata oluştu" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " -#~ "olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index e08dc4e9c490b7eabb4bbd436a2a91827e526a75..f14bcc7763fa5cbe952ca05e13a7e31328ea8398 100644 GIT binary patch delta 29294 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 delta 21047 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 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 55cea21c31..12187f589c 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-03-12 16:19+0000\n" "Last-Translator: Evan Prodromou \n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: UKRAINE\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Потік пошуку для \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr " від " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Оновленні відповіді %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -109,6 +111,7 @@ msgstr "" "Щиро ваші, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s." @@ -131,25 +134,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s оновив(ла) цю відповідь на оновлення від %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s має статус на %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Загальний потік" @@ -159,34 +165,48 @@ msgstr "%s Загальний потік" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s з друзями" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна хронологія" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s статус" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s хронологія" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s оновлення від всіх!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -194,16 +214,18 @@ msgstr "" "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " "інструкції щодо підтвердження вашої електронної адреси.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** це сервіс мікроблогів наданий вам " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** це сервіс мікроблогів. " @@ -216,32 +238,37 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " "Неодмінно." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 або більше знаків" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 або більше знаків, і не забудьте їх!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 або більше знаків. Неодмінно." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -251,6 +278,7 @@ msgstr "" "затведити %s для відправлення вам повідомлень." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -285,7 +313,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API метод не знайдено!" @@ -308,16 +363,23 @@ msgstr "API метод не знайдено!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API метод наразі знаходиться у розробці." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Про" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Погодитись" @@ -328,6 +390,9 @@ msgstr "Погодитись" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Додати" @@ -345,28 +410,30 @@ msgstr "Додати або вилучити адреси OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Всі підписки" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Всі оновлення для %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Всі оновлення за збігом з \"%s\"" @@ -376,32 +443,39 @@ msgstr "Всі оновлення за збігом з \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Тепер ви увійшли." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Тепер ви підписані!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Ви впевненні, що бажаєте видалити це повідомлення?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизувати підписку" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Автоматично входити у майбутньому; не для комп'ютерів загального " "користування!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -411,15 +485,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватара" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватару оновлено." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -430,6 +508,7 @@ msgstr "" "списку контактів?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -438,7 +517,7 @@ msgstr "" "спамом також!), там має бути повідомлення з подальшими інструкціями." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Очікування підтвердження телефонного номера." @@ -449,6 +528,8 @@ msgstr "Назад »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Про себе" @@ -456,16 +537,18 @@ msgstr "Про себе" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Ви перевищили ліміт (140 знаків це максимум)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Не можна видалити це повідомлення." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не можна прочитати URL аватари '%s'" @@ -473,6 +556,8 @@ msgstr "Не можна прочитати URL аватари '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Не можна зберегти новий пароль." @@ -480,31 +565,34 @@ msgstr "Не можна зберегти новий пароль." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Скасувати" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не можна підтвердити споживчий об'єкт OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Не можна полагодити цей Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Змінити" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Змінити електронну адресу вручну" @@ -514,11 +602,12 @@ msgid "Change password" msgstr "Змінити пароль" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Змінити ваш пароль" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" @@ -528,6 +617,9 @@ msgstr "Змінити налаштування профілю" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Підтвердити" @@ -540,12 +632,14 @@ msgstr "Підтвердити адресу" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Підтвердження скасовано." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код підтвердження" @@ -554,7 +648,8 @@ msgstr "Код підтвердження" msgid "Confirmation code not found." msgstr "Код підтвердження не знайдено." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -589,20 +684,24 @@ msgstr "" "сервіс." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "З'єднання" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "З'єднатись використовуючи існуючий рахунок" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Не вдалося створити форму OpenID: %s" @@ -610,35 +709,39 @@ msgstr "Не вдалося створити форму OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не вдалося додати користувача: %s вже присутній у вашому списку." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Не вдалося додати користувача: користувача не знайдено." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Невдале перенаправлення на сервер: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Не вдалося зберегти інформацію про аватару" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Не вдалося зберегти інформацію про новий профіль" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Не вдалося підписати іншого до вас." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Невдала підписка." @@ -658,15 +761,17 @@ msgstr "Не вдалося перетворити токени запиту н #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Не вдалося видалити підписку." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Жодних статусів не виявлено." @@ -679,29 +784,38 @@ msgstr "Не вдалося отримати токен запиту." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не вдалося додати код підтвердження." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Не вдалося зберегти профіль." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Не вдалося оновити користувача для автопідписки." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Не вдалося оновити запис користувача." @@ -717,42 +831,48 @@ msgstr "Не вдалося оновити запис користувача." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Не вдалося оновити користувача." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Створити" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Створити нового користувача з цим ім'ям." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Створити новий рахунок" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Створення нового рахунку для OpenID, яким ви вже користуєтесь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Поточна підтверджена адреса Jabber/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Поточний підтверджений телефонний номер." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Поточна підтверджена поштова адреса." @@ -761,23 +881,27 @@ msgid "Currently" msgstr "Поточне" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні тегу: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Помилка бази даних при додаванні відповіді: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Видалити повідомлення" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишіть себе та свої інтереси (140 знаків)" @@ -785,11 +909,13 @@ msgstr "Опишіть себе та свої інтереси (140 знаків #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Пошта" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Електронна адреса" @@ -799,39 +925,43 @@ msgid "Email Settings" msgstr "Налаштування пошти" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Ця адреса вже використовується." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Підтвердження електронної адреси" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Електронна адреса, на зразок \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Електронні адреси" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Введіть ім'я або електронну адресу." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Введіть код, який ви отримали телефоном." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Помилка токена авторизації" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Помилка при підключенні користувача до OpenID." @@ -842,39 +972,46 @@ msgstr "Помилка при підключенні користувача." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Помилка при додаванні аватари" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Помилка при додаванні нового профілю" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Помилка при додаванні віддаленого профілю" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Помилка при збереженні підтвердження адреси." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Помилка при збереженні віддаленого профілю" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Помилка при збереженні профілю." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Помилка при збереженні користувача." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Помилка при збереженні користувача; недійсний." @@ -883,6 +1020,9 @@ msgstr "Помилка при збереженні користувача; не #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Помилка в налаштуваннях користувача." @@ -893,6 +1033,7 @@ msgstr "Помилка при оновленні профілю" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Помилка при оновленні віддаленого профілю" @@ -902,33 +1043,36 @@ msgid "Error with confirmation code." msgstr "Помилка з кодом підтвердження." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Існуюче ім'я" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧаПи" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Оновлення аватари невдале." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Живлення для друзів %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Живлення для відповідей %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Живлення для тегів %s" @@ -943,7 +1087,7 @@ msgstr "Знайти за змістом повідомлень" msgid "Find people on this site" msgstr "Знайти людей на цьому сайті" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -956,6 +1100,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Повне ім'я" @@ -964,23 +1113,33 @@ msgstr "Повне ім'я" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Повне ім'я задовге (255 знаків максимум)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Допомога" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Дім" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Веб-сторінка" @@ -988,21 +1147,27 @@ msgstr "Веб-сторінка" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Я хочу надсилати повідомлення поштою." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "ІМ" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Адреса IM" @@ -1012,7 +1177,7 @@ msgid "IM Settings" msgstr "Налаштування IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1020,7 +1185,7 @@ msgstr "" "Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб " "приєднати їх до вашого OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1028,7 +1193,7 @@ msgstr "" "Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче " "і натисніть \"Додати\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1040,25 +1205,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Вхідна пошта" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Адресу вхідної пошти видалено." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Старий пароль неточний" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Неточне ім'я або пароль." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1067,30 +1238,31 @@ msgstr "" "вказали у налаштуваннях вашого профілю." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Недійсна URL-адреса аватари '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Недійсна електронна адреса: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Недійсна веб-сторінка '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Недійсна ліцензія URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Недійсний зміст повідомлення" @@ -1105,13 +1277,13 @@ msgid "Invalid notice url" msgstr "Недійсна URL-адреса повідомлення" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Недійсна URL-адреса профілю '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Недійсна URL-адреса профілю (неправильний формат)" @@ -1129,28 +1301,35 @@ msgstr "Недійсний розмір." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Недійсне ім'я або пароль." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Запрошення відіслано" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Запрошення були надіслани наступним особам:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Запросити" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Запросити нових користувачів" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1162,11 +1341,12 @@ msgstr "" "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID вже належить іншому користувачу." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1177,12 +1357,14 @@ msgstr "" "GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Мова" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Мова задовга (50 знаків максимум)" @@ -1192,7 +1374,15 @@ msgstr "Мова задовга (50 знаків максимум)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Локація" @@ -1201,7 +1391,12 @@ msgstr "Локація" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Локація надто довга (255 знаків максимум)" @@ -1210,18 +1405,22 @@ msgstr "Локація надто довга (255 знаків максимум) #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Увійти" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Увійти з [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1229,25 +1428,29 @@ msgid "" "%). " msgstr "" "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати " -"[OpenID](%%action.openidlogin%%). " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Вийти" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Довше ім'я, переважно ваше \"справжнє\" ім'я" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубили або забули пароль?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." @@ -1258,16 +1461,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Зазначте, як само ви бажаєте отримувати листи з %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "З нами від" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Мікроблог від %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1280,42 +1485,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мої повідомлення та файли доступні під " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Нове" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Нова електронна адреса для надсилання повідомлень на %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нове ім'я" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Нове повідомлення" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Новий пароль" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новий пароль успішно збережено. Тепер ви увійшли." @@ -1325,7 +1538,13 @@ msgstr "Новий пароль успішно збережено. Тепер в #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Ім'я користувача" @@ -1334,7 +1553,12 @@ msgstr "Ім'я користувача" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Це ім'я вже використовується. Спробуйте інше." @@ -1343,49 +1567,60 @@ msgstr "Це ім'я вже використовується. Спробуйте #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Таке ім'я неприпустиме." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Ім'я користувача, за яким ви бажаєте слідувати" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Ім'я або електронна адреса" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Ні" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Немає Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Немає запиту на авторизацію!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Оператора не обрано." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Код не введено" @@ -1397,11 +1632,15 @@ msgstr "Немає коду підтвердження." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Немає змісту!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Немає електронної адреси." @@ -1410,7 +1649,9 @@ msgid "No id." msgstr "Немає ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Немає адреси для вхідної пошти." @@ -1421,6 +1662,7 @@ msgstr "На віддаленому сервері такого імені не #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Немає імені." @@ -1428,12 +1670,14 @@ msgstr "Немає імені." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Не очікується підтвердження для скасування." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Немає телефонного номера." @@ -1443,7 +1687,8 @@ msgid "No profile URL returned by server." msgstr "Немає URL-адреси профілю, яку б було повернуто сервером." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Для цього користувача немає зареєстрованої електронної адреси." @@ -1455,7 +1700,7 @@ msgstr "Відповідей на запит немає!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Немає результатів" @@ -1466,12 +1711,16 @@ msgstr "Немає розміру." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Жодних статусів з таким ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не знайдено жодних статусів з таким ID." @@ -1481,13 +1730,15 @@ msgid "No such OpenID." msgstr "Такого OpenID немає." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Такого документа немає." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Такого повідомлення немає." @@ -1525,12 +1776,22 @@ msgstr "Немає такої підписки" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Такого користувача немає." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Користувача з такою електронною адресою або ім'ям немає." @@ -1544,33 +1805,39 @@ msgid "Not a recovery code." msgstr "Це не код оновлення." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Це не зареєстрований користувач." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." # "Invalid" та "Not a valid" я умовно поставив знак рівняння між ними, тому перекладаю як "недійсний", замість "не дійсний". Це не помилка. #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Це недійсний Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Це недійсний OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Це недійсна електронна адреса" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." @@ -1578,6 +1845,11 @@ msgstr "Це недійсна електронна адреса." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Це недійсне ім'я користувача." @@ -1597,7 +1869,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Це не зображення, або файл зіпсовано." @@ -1608,11 +1881,13 @@ msgstr "Не авторизовано." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Ця відповідь не очікується!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не знайдено" @@ -1628,11 +1903,15 @@ msgstr "Не знайдено" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не увійшли." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не підписано!." @@ -1649,39 +1928,44 @@ msgid "Notice feed for %s" msgstr "Живлення повідомлень для %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Повідомлення не має профілю" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Повідомлення" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Повідомлення позначені з %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Старий пароль" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Установки рахунку OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автопідтвердження OpenID" @@ -1689,29 +1973,34 @@ msgstr "Автопідтвердження OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Вхід OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL-адреса OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Ідентифікацію OpenID скасовано." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Ідентифікація OpenID невдала: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Невдача OpenID: %s" @@ -1727,11 +2016,12 @@ msgid "OpenID settings" msgstr "Налаштування OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Часткове завантаження." @@ -1741,34 +2031,46 @@ msgstr "Часткове завантаження." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Пароль" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Пароль та підтвердження не співпадають." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Пароль має складатись з 6-ти або більше знаків." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Запит на відновлення паролю відправлено." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Пароль збережено." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Паролі не співпадають." @@ -1788,14 +2090,17 @@ msgid "People search" msgstr "Пошук людей" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Особисте" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Особисті повідомлення" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" @@ -1810,7 +2115,7 @@ msgstr "" "підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." @@ -1820,7 +2125,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Преференції" @@ -1829,42 +2136,52 @@ msgstr "Преференції" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Преференції збережно." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Мова, якій надаєте перевагу" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Конфіденційність" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблема при збереженні повідомлення." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профіль" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL-адреса профілю" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Налаштування профілю" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Невідомий профіль" @@ -1873,17 +2190,19 @@ msgid "Public Stream Feed" msgstr "Живлення загального потоку" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Загальна хронологія" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Позначати міткою MicroID мою електронну адресу." @@ -1893,12 +2212,14 @@ msgid "Recent Tags" msgstr "Нові теги" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Відновити" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Відновити пароль" @@ -1911,37 +2232,45 @@ msgstr "Код відновлення для невідомого користу #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Реєстрація успішна" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Забраковано" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Пам'ятати мене" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Віддалений профіль не співпадає з цим профілем" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Віддалена підписка" @@ -1955,6 +2284,9 @@ msgstr "Віддалена підписка" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Видалити" @@ -1963,7 +2295,7 @@ msgstr "Видалити" msgid "Remove OpenID" msgstr "Видалити OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1972,34 +2304,41 @@ msgstr "" "увійти знову! Перед тим як видалити його, з початку додайте інший." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Відповіді" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Відповіді до %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Скинути" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Скинути пароль" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Телефонний номер" @@ -2008,17 +2347,18 @@ msgstr "Телефонний номер" msgid "SMS Settings" msgstr "Налаштування СМС" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Підтвердження СМС" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Такий само, як і пароль вище" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." @@ -2031,12 +2371,21 @@ msgstr "Такий само, як і пароль вище. Неодмінно." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Пошук" @@ -2046,7 +2395,7 @@ msgid "Search Stream Feed" msgstr "Живлення потоку пошуку" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2055,7 +2404,7 @@ msgstr "" "Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " "умови інтервалами; вони повинні складатись з 3 знаків або більше." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2066,34 +2415,39 @@ msgstr "" "або більше." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Оберіть оператора" # Слово "Надіслати" у вузьку рамку веб-форми відправлення повідомлень на сайті не втискається. Гадаю "Так!" цілком прийнятний замінник. #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Так!" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Надсилайте листи на цю адресу і їх буде опубліковано на сайті." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Поівдомляти мене поштою про нові підписки." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Повідомляти мене через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2102,17 +2456,20 @@ msgstr "" "витрати від мого мобільного оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " "підписаний." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Налаштування" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Налаштування збережено." @@ -2132,28 +2489,33 @@ msgid "Something weird happened." msgstr "Сталося щось дивне." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Вибачте, але це не є вашою електронною адресою для входної пошти." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Джерело" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Збережений OpenID не знайдено." @@ -2161,24 +2523,28 @@ msgstr "Збережений OpenID не знайдено." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Підписатись" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Підписчики" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Підписку авторизовано" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Підписку скинуто" @@ -2186,28 +2552,35 @@ msgstr "Підписку скинуто" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Підписки" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Теги" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Пошук тексту" @@ -2227,6 +2600,7 @@ msgid "That confirmation code is not for you!" msgstr "Цей код підтвердження не для вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Ця електронна адреса належить іншому користувачу." @@ -2236,63 +2610,73 @@ msgid "That file is too big." msgstr "Цей файл надто великий." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Це і так вже ваш Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Це і так вже ваша адреса." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Це і так вже ваш телефонний номер." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Це не ваш Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Це не ваша адреса." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Це не ваш телефонний номер." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Це помилкова адреса IM." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Це помилковий код підтвердження." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Цей телефонний номер належить іншому користувачу." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Надто довго. Максимальний розмір повідомлення 255 знаків." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресу \"%s\" було підтверджено для вашого рахунку." @@ -2301,11 +2685,14 @@ msgstr "Адресу \"%s\" було підтверджено для вашог #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресу було видалено." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2315,7 +2702,8 @@ msgstr "" "Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " "авторизувати підписку. Ваш підписний токен:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2326,33 +2714,38 @@ msgstr "" "підписку." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Тут представлені ті, хто слідкує за повідомленнями від %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Тут представлені ті, хто слідкує за вашими повідомленнями." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Тут представлені ті, за чиїми повідомленнями слідкує %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Тут представлені ті, за чиїми повідомленнями ви слідкуєте." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2362,7 +2755,7 @@ msgstr "" "вашого OpenID провайдера." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2377,6 +2770,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." @@ -2385,49 +2781,63 @@ msgstr "Цей метод потребує або НАПИСАТИ, або ВИ #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Цей метод потребує НАПИСАТИ." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часовий пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Часовий пояс не обрано." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Щоб підписатись, ви можете [увійти](%%action.login%%), або " -"[зареєструвати](%%action.register%%) новий рахунок. Якщо ви вже маєте " -"рахунок на [сумісному сайті](%%doc.openmublog%%), введіть URL-адресу " -"вашого профілю нижче." +"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" +"action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному " +"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Два ID або імені_у_мережі повинні підтримуватись." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL-адреса вашої веб-сторінки, блогу, або профілю на іншому сайті" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" @@ -2439,15 +2849,22 @@ msgstr "URL-адреса вашого профілю на іншому сумі #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Несподіване представлення форми." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Несподіване скидання паролю." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Дія невідома" @@ -2478,38 +2895,47 @@ msgstr "Відписатись" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Версія OMB не підтримується" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Формат зображення не підтримується." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Оновлення через SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Завантажити" @@ -2520,8 +2946,8 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не зможете " -"відредагувати свою аватару після завантаження, так що спочатку " +"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не " +"зможете відредагувати свою аватару після завантаження, так що спочатку " "переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення " "зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які " "належать вам, і які ви можете вільно демонструвати." @@ -2531,6 +2957,7 @@ msgid "Upload a new profile image" msgstr "Завантажити нове зображення користувача" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2538,7 +2965,9 @@ msgstr "" "сервісу." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Використовується лише для оновлень, оголошень та відновлення паролю" @@ -2562,11 +2991,16 @@ msgstr "Користувача, який слідкував за вашими п #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Користувач не має профілю." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Ім'я користувача" @@ -2575,29 +3009,33 @@ msgid "User not found." msgstr "Користувача не знайдено." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "За яким часовим поясом ви живете?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Що нового, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Де ви живете, на зразок \"Місто, область (регіон), країна\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Неправильний тип зображення для '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Неправильний розмір зображення '%s'" @@ -2605,7 +3043,9 @@ msgstr "Неправильний розмір зображення '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Так" @@ -2628,11 +3068,12 @@ msgid "You are already logged in!" msgstr "Ви вже в системі!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ви вже підписані до цих користувачів:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Ви не є друзями із вказаним користувачем." @@ -2650,15 +3091,16 @@ msgstr "Ви можете створити новий рахунок, щоб п msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку " -"\"Видалити\"." +"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити" +"\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2668,7 +3110,8 @@ msgstr "" "миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " "нижче." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2679,21 +3122,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Ви можете користуватись локальними підписками!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Ви не надсилали нам цього профілю" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2715,16 +3160,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Ви не можете видалити статус іншого користувача." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2732,70 +3180,81 @@ msgstr "" "Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " "і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "URL-адреса вашого OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах " -" користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "мить тому" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "день тому" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "хвилину тому" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "місяць тому" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "рік тому" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "годину тому" @@ -2817,12 +3276,14 @@ msgid "reply" msgstr "відповісти" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "такий само, як і пароль вище" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "тип файлу не підтримується" @@ -2843,6 +3304,26 @@ msgstr "« Вперед" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." @@ -2852,6 +3333,7 @@ msgid "This notice is not a favorite!" msgstr "Це повідомлення не є обраним!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Не можна видалити зі списку обраних." @@ -2859,23 +3341,29 @@ msgstr "Не можна видалити зі списку обраних." msgid "Favor" msgstr "Обрати" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Це повідомлення вже є обраним!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Не можна позначити як обране." @@ -2885,11 +3373,13 @@ msgstr "Не обране" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Обрані повідомлення %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Живлення для обраних повідомлень від %s" @@ -2932,23 +3422,32 @@ msgid "Login with your username and password. " msgstr "Увійти з вашим ім'ям та паролем. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Надто довго. Максимальний розмір 140 знаків." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Жодного отримувача не визначено." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2956,11 +3455,13 @@ msgstr "" "вголос." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Немає такого користувача" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Нове повідомлення" @@ -3016,6 +3517,11 @@ msgstr "Ви можете оновити власну персональну і #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Користувач з невідповідним профілем" @@ -3044,6 +3550,8 @@ msgid "New password successfully saved. " msgstr "Новий пароль успішно збережено. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Пароль має складатись з 6-ти або більше знаків." @@ -3066,12 +3574,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Аби підписатись, ви можете [увійти](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Живлення для обраних повідомлень від %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не можна відновити обрані повідомлення." @@ -3079,7 +3590,7 @@ msgstr "Не можна відновити обрані повідомлення msgid "No such message." msgstr "Немає такого повідомлення." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Лише відправник та отримувач мають можливість читати це повідомлення." @@ -3103,52 +3614,71 @@ msgid "Mobile carrier for your phone. " msgstr "Оператор мобільного зв'язку. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Пряме повідомлення до %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Всі прямі повідомлення надіслані до %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Прямі повідомлення надіслані вами" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всі прямі повідомлення надіслані від %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Повідомлення без тексту!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Отримувача не знайдено." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Обрані від %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s оновлення обраних від %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s додав(ла) ваше повідомлення до обраних" @@ -3160,8 +3690,8 @@ msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" msgstr "" -"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних " -"ним(нею)\n" +"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним" +"(нею)\n" "\n" #: actions/twittersettings.php:27 @@ -3172,14 +3702,17 @@ msgstr "" "туди, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Налаштування Твіттера" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Рахунок на Твіттері" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Поточний підтверджений рахунок на Твіттері." @@ -3188,6 +3721,7 @@ msgid "Twitter Username" msgstr "Ім'я на Твіттері" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без пробілів, будь ласка." @@ -3196,18 +3730,22 @@ msgid "Twitter Password" msgstr "Пароль на Твіттері" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматично пересилати мої повідомлення на Твіттер." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Надсилати локальні \"@\" відповіді на Твіттер." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Підписатись до моїх друзів на Твіттері тут." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3216,6 +3754,7 @@ msgstr "" "регістрів та символів підкреслювання (_). 15 знаків це максимум." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Не можна підтвердити ваші реквізити на Твіттері!" @@ -3226,33 +3765,43 @@ msgstr "Не маю можливості відновити інформацію #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Налаштування Твіттера збережено." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Це не є вашим рахунком на Твіттері." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Не можна видалити користувача Твіттер." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Твіттер рахунок видалено." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Не можна зберегти преференції Твіттера." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Преференції Твіттера збережено." @@ -3269,18 +3818,19 @@ msgid "The subscription has been rejected, but no " msgstr "Підписку було скинуто, але не " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Результати команди" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Команду виконано" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Команду не виконано" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Даруйте, але виконання команди ще не завершено." @@ -3290,89 +3840,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Підписки: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Користувач має останнє повідомлення" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Повідомлення позначено як обране." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Повне ім'я: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Локація: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Про мене: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Пряме повідомлення до %s надіслано" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Помилка при відправці прямого повідомлення." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Зазначте ім'я користувача, до якого бажаєте підписатись" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Підписано до %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Зазначте ім'я користувача, від якого бажаєте відписатись" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Відписано від %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Сповіщення вимкнуто." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Сповіщення увімкнуто." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." @@ -3380,11 +3952,11 @@ msgstr "Не можна увімкнути сповіщення." msgid "Commands:\n" msgstr "Команди:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Не можна долучити повідомлення." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." @@ -3401,7 +3973,7 @@ msgstr "" "Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Нове приватне повідомлення від %s" @@ -3415,7 +3987,7 @@ msgstr "" "%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" "Лише користувач має можливість переглядати свою власну поштову скриньку." @@ -3425,31 +3997,39 @@ msgid "This form should automatically submit itself. " msgstr "Ця форма має автоматично репрезентувати себе системі. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Обрані" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Обрані дописи %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Користувач" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Вхідні" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Ваші вхідні повідомлення" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Вихідні" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Надіслані вами повідомлення" @@ -3462,14 +4042,19 @@ msgid "Twitter integration options" msgstr "Опції інтеграції з Твіттером" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "До" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Не можна розібрати повідомлення." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s з друзями, сторінка %d" @@ -3479,21 +4064,31 @@ msgid "You can upload your personal avatar." msgstr "Ви можете завантажити вашу персональну аватару." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Налаштування аватари" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригінал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Втяти" @@ -3510,34 +4105,43 @@ msgid "There was a problem with your session token. " msgstr "Виникли певні проблеми з токеном поточної сесії. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Дані вашого файлу десь загубились." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Файл втрачено." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Тип файлу не підтримується" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Не визначено жодного профілю." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Не визначено профілю з таким ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Блокувати користувача." @@ -3545,11 +4149,11 @@ msgstr "Блокувати користувача." msgid "Are you sure you want to block this user? " msgstr "Ви впевненні, що бажаєте заблокувати цього користувача? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Цього користувача вже заблоковано." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." @@ -3566,40 +4170,58 @@ msgstr "Ви видаляєте повідомлення назавжди. " msgid "Add to favorites" msgstr "Додати до обраних" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Редагувати групу %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" "Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у " "групах" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Немає імені" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Такої групи немає" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Скористайтесь цією формою, щоб відредагувати групу." @@ -3608,14 +4230,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Ім'я користувача повинно складатись з літер нижнього регістру " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "опис надто довгий (140 знаків максимум)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Не вдалося оновити групу." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Опції збережено." @@ -3632,7 +4255,8 @@ msgstr "Створити нову електронну адресу для на msgid "Send me email when someone " msgstr "Надсилати мені листа коли хтось " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Дозволити друзям \"розштовхати\" мене, надіславши мені листа." @@ -3645,7 +4269,7 @@ msgid "A confirmation code was sent to the email address you added. " msgstr "" "Код підтвердження був відправлений на електронну адресу, яку ви додали. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Помилка сервера - неможливо дістатись користувача!" @@ -3659,51 +4283,66 @@ msgstr "Якщо ви бажаєте додаток до %s для автома msgid "Allow %s to update my Facebook status" msgstr "Дозволити %s оновлювати мій статус у Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропустити" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Повідомлення не має змісту!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Нумерація сторінок" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Вперед" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Назад" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Дякуємо, що запросили своїх друзів до %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Запрошення були надіслані наступним користувачам:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Вас запрошують до %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Запросіть своїх друзів до %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Друзі, які вже користуються %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Надіслати запрошення" @@ -3745,12 +4384,14 @@ msgstr "Якщо бажаєте %s для автоматичного оновл msgid "Sync preferences" msgstr "Преференції синхронізації" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Видалити з обраних" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярні дописи" @@ -3764,7 +4405,8 @@ msgid "The most popular notices on the site right now." msgstr "Представлено найбільш популярні дописи на сайті." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Користувачі варті уваги" @@ -3778,15 +4420,17 @@ msgstr "Користувачі варті уваги, сторінка %d" msgid "A selection of some of the great users on %s" msgstr "Вибірка з деяких видатних користувачів на %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Цей користувач заблокував вашу можливість підписатись." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Немає ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Логотип групи" @@ -3794,11 +4438,13 @@ msgstr "Логотип групи" msgid "You can upload a logo image for your group." msgstr "Ви маєте можливість завантажити логотип для вашої группи." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Логотип оновлено." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Оновлення логотипу завершилось невдачею." @@ -3817,7 +4463,8 @@ msgid "A list of the users in this group." msgstr "Список учасників цієї групи." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -3834,6 +4481,7 @@ msgstr "" "спілкуватись з " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Створити нову групу" @@ -3843,7 +4491,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Пошук груп на %%site.name%% за їх назвою, локацією або описом. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Пошук груп" @@ -3865,20 +4513,20 @@ msgstr "Надсилати мені відповіді за допомою Jabbe msgid "A confirmation code was sent " msgstr "Код підтвердження було відправлено " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Ви вже є учасником цієї групи" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Користувачеві %s не вдалось приєднатись до групи %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s приєднався до групи %s" @@ -3887,15 +4535,18 @@ msgstr "%s приєднався до групи %s" msgid "Inboxes must be enabled for groups to work." msgstr "Скриньки вхідних повідомлень мають бути дозволені для роботи у групах." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Такої групи немає." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Ви не є учасником цієї групи." @@ -3903,21 +4554,25 @@ msgstr "Ви не є учасником цієї групи." msgid "You may not leave a group while you are its administrator." msgstr "Ви не можете залишити групу допоки ви є її адміністратором." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Не вдалося знайти запис щодо членства." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Не вдалося видалити користувача %s з групи %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s залишив групу %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Вхід на сайт" @@ -3929,15 +4584,17 @@ msgstr "Ніякого поточного статусу" msgid "New group" msgstr "Нова група" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Скористайтесь цією формою для створення нової групи." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Не вдалося створити нову групу" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." @@ -3949,11 +4606,14 @@ msgstr "Це надто довго. " msgid "Don't send a message to yourself; " msgstr "Не надсилайте повідомлень самому собі; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Повідомлення відправлено" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Помилка в Ajax" @@ -3972,7 +4632,7 @@ msgstr "Спробу \"розштовхати\" зараховано" msgid "Nudge sent!" msgstr "Спробу \"розштовхати\" зараховано!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Вхід OpenID" @@ -3996,11 +4656,13 @@ msgstr "Автоматичне скорочення URL-адрес" msgid "Service" msgstr "Сервіс" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Сервіси доступні для використання" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервіс скорочення URL-адрес надто довгий (50 знаків максимум)." @@ -4008,16 +4670,17 @@ msgstr "Сервіс скорочення URL-адрес надто довгий msgid "Change your password." msgstr "Змінити пароль." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Пароль замінено" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Це недійсний особистий тег: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Користувачі з особистим тегом %s - сторінка %d" @@ -4027,11 +4690,12 @@ msgstr "Користувачі з особистим тегом %s - сторі msgid "These are users who have tagged themselves \"%s\" " msgstr "Тут представлені користувачі, які позначили себе тегом \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Інформація профілю" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4043,20 +4707,25 @@ msgid "Automatically subscribe to whoever " msgstr "Автоматична підписка до будь кого, хто " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Недійсний тег: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Не вдалося зберегти теги." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Загальний потік, сторінка %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Не вдається відновити загальний потік." @@ -4066,8 +4735,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] " -"(http://en.wikipedia.org/wiki/Micro-blogging) " +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4078,11 +4747,13 @@ msgstr "Загальна хмарка тегів" msgid "These are most popular recent tags on %s " msgstr "Це найбільш популярні нові теги на %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Хмарка тегів" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" "Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." @@ -4132,7 +4803,8 @@ msgstr "(Ви маєте отримати листа електронною по msgid "That's a local profile! Login to subscribe." msgstr "Це локальний профіль! Увійдіть аби підписатись." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Відповіді %s, сторінка %d" @@ -4142,50 +4814,71 @@ msgstr "Відповіді %s, сторінка %d" msgid "%s favorite notices, page %d" msgstr "Обрані повідомлення %s, сторінка %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Група %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Група %s, сторінка %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профіль групи" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Зауваження" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Діяльність групи" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Живлення повідомлень для групи %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Учасники" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Пусто)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всі учасники" @@ -4202,7 +4895,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Лише відправник та отримувач " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, сторінка %d" @@ -4212,30 +4905,37 @@ msgid "'s profile" msgstr " профіль" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Профіль користувача." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Фото" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Діяльність користувача" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Надіслати пряме повідомлення цьому користувачеві" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Повідомлення" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Всі підписчики" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Всі групи" @@ -4260,7 +4960,7 @@ msgstr "Повідомляти мене за допомогою СМС; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Код підтвердження було надіслано на телефонний номер, який ви додали. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Мобільний оператор" @@ -4318,16 +5018,17 @@ msgstr "Тут представлені ті, за чиїми повідомле msgid "These are the people whose " msgstr "Тут представлені ті, чиї " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Повідомлення позначені %s, сторінка %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Найновіші повідомлення позначені \"%s\"" @@ -4349,7 +5050,7 @@ msgstr "Позначити %s" msgid "Tag user" msgstr "Позначити користувача" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4361,18 +5062,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " "хто є підписаним до вас." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Не вдалося зберегти теги." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Скористайтесь цією формою, щоб додати теги підпискам та підписчикам." @@ -4380,20 +5081,23 @@ msgstr "Скористайтесь цією формою, щоб додати т msgid "No such tag." msgstr "Такого тегу немає." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Мікроблог позначено тегом %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Спроба заблокувати користувача невдала." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Спроба розблокувати користувача невдала." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не знайдено." @@ -4401,15 +5105,16 @@ msgstr "Не знайдено." msgid "Add your Twitter account to automatically send " msgstr "Додайте свій рахунок на Твіттері, аби автоматично пересилати " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Ваше ім'я користувача на Твіттері" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Пароль на Твіттері" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Друзі на Твіттері" @@ -4422,145 +5127,154 @@ msgstr "Ім'я користувача має складатись лише з msgid "Unable to retrieve account information " msgstr "Не вдається відновити інформацію рахунку " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Помилка при розблокуванні." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "У запиті відсутній ID профілю." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Немає профілю з таким ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Відписано" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Групи %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Групи %s, сторінка %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні повідомлення. Невідомий користувач." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато повідомлень за короткий термін; відпочиньте трошки і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Завантаження аватари" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Інше" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Інші опції" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Персональний профіль і потік друзів" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Рахунок" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Зв'язок з ІМ, СМС, Твіттер" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Створити новий рахунок" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Увійти з OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Огляд" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Ліцензія StatusNet software" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Всі " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ліцензія." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Блокувати користувача" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блок" @@ -4573,11 +5287,14 @@ msgstr "Видалити з обраних" msgid "To use the %s Facebook Application you need to login " msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " новий рахунок." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Опубліковано" @@ -4597,31 +5314,36 @@ msgstr "Фільтр для тегів" msgid "All" msgstr "Всі" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Тег" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Оберіть тег до звуженого списку" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Вперед" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL-адреса веб-сторінки, блогу групи, або тематичного блогу" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Опис" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" @@ -4630,20 +5352,20 @@ msgstr "Локація групи, на зразок \"Місто, област msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Адмін" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редагувати властивості групи %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Лого" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Додати або редагувати логотип %s" @@ -4673,11 +5395,11 @@ msgstr "Приєднатись" msgid "Leave" msgstr "Залишити" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Увійти використовуючи ім'я та пароль" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Зареєструвати новий рахунок" @@ -4699,17 +5421,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s тепер слідкує за повідомленями " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Локація: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Веб-сторінка: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4718,7 +5440,7 @@ msgstr "" "Про себе: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Вас спробував \"розштовхати\" %s" @@ -4733,39 +5455,47 @@ msgstr "%1$s (%2$s) цікавиться, що у вас нового " msgid "%1$s just added your notice from %2$s" msgstr "%1$s додав ваше повідомлення від %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Від" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Надіслати пряме повідомлення" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Надіслати повідомлення" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Лишилось знаків" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "у відповідь на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Відповісти на це повідомлення" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Видалити повідомлення" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Видалити" @@ -4786,29 +5516,31 @@ msgstr "Спробувати \"розштовхати\" цього корист msgid "Tags in %s's notices" msgstr "Теги у повідомленнях %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(пусто)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Загал" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Групи користувачів" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Нові теги" # ПОСТАТЬ - Видатна особа, визначний представник кого-, чого-небудь. # "Featured" перекласти одним словом, так щоб втислося в таб на головній сторінці, важко. На мою думку "Постаті", тобто користувачі, які варті уваги - цілком прийнятний замінник. -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Постаті" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярне" @@ -4824,31 +5556,33 @@ msgstr "Знайти групи на цьому сайті" msgid "Untitled section" msgstr "Розділ без заголовку" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "%s підписався до наступних людей" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Люди підписані до %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s бере участь в цих групах" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до вас на %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Користувач заблокував вас." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" @@ -4861,10 +5595,11 @@ msgid "Top posters" msgstr "Топ дописувачів" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Розблокувати цього користувача" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Розблокувати" @@ -4872,6 +5607,2067 @@ msgstr "Розблокувати" msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s з друзями" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Ви можете завантажити вашу персональну аватару." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватару оновлено." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " +"зворотня дія неможлива." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Ви маєте можливість завантажити логотип для вашої группи." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Мікроблог від %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Помилка при відправці прямого повідомлення." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Потік пошуку для \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " +"змінювати налаштування." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Живлення загального потоку" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Живлення загального потоку" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Живлення загального потоку" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " +"номер." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Створити" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профіль групи" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " профіль" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Вихідні для %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватара" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Налаштування профілю" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код підтвердження був відправлений на телефонний номер, який ви додали. " +"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Немає такого користувача" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " +"туди, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Пошук людей або текстів" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Зв'язок з ІМ, СМС, Твіттер" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "\"Розштовхати\"" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Щиро ваші,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Пошук" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Такого документа немає." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список учасників цієї групи." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список учасників цієї групи." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профіль користувача." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s з друзями, сторінка %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список учасників цієї групи." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Спроба розблокувати користувача невдала." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код підтвердження" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не можна видалити це повідомлення." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Недійсний тег: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Це ім'я вже використовується. Спробуйте інше." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не можна позначити як обране." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нове повідомлення" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нове повідомлення" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Це недійсне ім'я користувача." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Не визначено жодного профілю." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Користувач заблокував вас." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Ви не є учасником цієї групи." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокувати користувача." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не вдалося оновити користувача." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференції синхронізації збережно." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Адмін" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Немає результатів" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Користувач заблокував вас." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Повідомлення" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Не вдалося зберегти профіль." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Налаштування профілю" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " +"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " +"рахунку." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Запит на відновлення паролю відправлено." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Помилка з кодом підтвердження." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Підписатись до цього користувача" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Обрані повідомлення %s, сторінка %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Адмін" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Такого користувача немає." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Повідомлення позначені з %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s тепер слідкує за повідомленями " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Живлення повідомлень для %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Це повідомлення вже є обраним!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Це повідомлення не є обраним!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не вдається відновити загальний потік." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Жодного отримувача не визначено." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Жодних статусів не виявлено." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Оновленні відповіді %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "ліцензія." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Підписки %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Налаштування профілю" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Ви не є учасником цієї групи." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблема при збереженні повідомлення." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Повідомлення до %1$s на %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Профіль користувача." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профіль" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Завантажити" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Змінити ваш пароль" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "З'єднання" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Пошук" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Увійти" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блок" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Блокувати користувача." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Додати або редагувати логотип %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Немає змісту!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Користувач" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Пошук" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Веб-сторінка має недійсну URL-адресу." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Такого тегу немає." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Пряме повідомлення до %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Надто довго. Максимальний розмір 140 знаків." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Не вдалося додати користувача: користувача не знайдено." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ви вже є учасником цієї групи" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Користувачеві %s не вдалось приєднатись до групи %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Ви не є учасником цієї групи." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не вдалося видалити користувача %s з групи %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s бере участь в цих групах" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Діяльність групи" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Формат зображення не підтримується." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не вдалося перетворити токени запиту на токени звернення." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Невідома версія протоколу OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Такого повідомлення немає." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Файл втрачено." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ця сторінка не доступна в " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всі оновлення за збігом з \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишіть себе та свої інтереси (140 знаків)" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишіть себе та свої " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Ви перевищили ліміт (140 знаків це максимум)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Це локальний профіль! Увійдіть аби підписатись." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не вдалося отримати токен запиту." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Повідомлення до %1$s на %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Група %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Повідомлення відправлено" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ця сторінка не доступна в " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " +"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " +"авторизувати підписку. Ваш підписний токен:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " +"з інструкціями на сайті для більш конкретної інформації про те, як скинути " +"підписку." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не можна прочитати URL аватари '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неправильний тип зображення для '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Невдале перенаправлення на сервер: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Ліцензія StatusNet software" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Спробу \"розштовхати\" зараховано" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Відповісти на це повідомлення" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблема при збереженні повідомлення." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Немає коду підтвердження." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Увійти на сайт" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Оберіть оператора" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Живлення повідомлень для %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s додав(ла) ваше повідомлення до обраних" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " від " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Не можна видалити зі списку обраних." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Видалити повідомлення" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Створити новий рахунок" diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index b2f4dd370a9d389e9949cf80a1ec2465069de9f1..853a4887aea5a1ee3605146908e46d68f5645956 100644 GIT binary patch delta 27841 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\n" "Language-Team: \n" @@ -15,14 +15,14 @@ msgstr "" "X-Poedit-Country: NEW ZEALAND\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Tìm dòng thông tin cho \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" @@ -33,17 +33,19 @@ msgid " from " msgstr " từ " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s moi ban tham gia vao %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -101,6 +103,7 @@ msgstr "" "Thân, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." @@ -123,25 +126,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Trạng thái của %1$s vào %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Dòng tin công cộng" @@ -151,34 +157,48 @@ msgstr "%s Dòng tin công cộng" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s và bạn bè" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "Dòng tin công cộng" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, fuzzy, php-format msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, fuzzy, php-format msgid "%s timeline" msgstr "Dòng tin nhắn của %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s cập nhật từ tất cả mọi người!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -186,7 +206,8 @@ msgstr "" "(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " "của bạn.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -195,7 +216,8 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " @@ -207,32 +229,36 @@ msgstr "Người đăng ký nên được phân theo tên hoặc nickname" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay " #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt " "buộc." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "Nhiều hơn 6 ký tự" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Nhiều hơn 6 ký tự, đừng quên nó!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "Nhiều hơn 6 ký tự. Bắt buộc" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -242,6 +268,7 @@ msgstr "" "tin nhắn đến bạn." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Phương thức API không tìm thấy!" @@ -299,16 +353,23 @@ msgstr "Phương thức API không tìm thấy!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Phương thức API dưới cấu trúc có sẵn." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Giới thiệu" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Chấp nhận" @@ -319,6 +380,9 @@ msgstr "Chấp nhận" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Thêm" @@ -336,28 +400,30 @@ msgstr "Thêm mới hoặc xóa OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Địa chỉ" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tất cả đăng nhận" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tất cả các cập nhật của %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Các thay đổi phù hợp với từ \"%s\"" @@ -367,30 +433,37 @@ msgstr "Các thay đổi phù hợp với từ \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Đã đăng nhập." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Đã đăng nhận rồi!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Đăng nhận cho phép" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng chung!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Tự động theo những người nào đăng ký theo tôi" @@ -398,15 +471,19 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Hình đại diện" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Hình đại diện đã được cập nhật." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -416,6 +493,7 @@ msgstr "" "nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -424,7 +502,7 @@ msgstr "" "để nhận tin nhắn và lời hướng dẫn." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 #, fuzzy msgid "Awaiting confirmation on this phone number." msgstr "Đó không phải là số điện thoại của bạn." @@ -437,6 +515,8 @@ msgstr "Trước" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Lý lịch" @@ -444,16 +524,18 @@ msgstr "Lý lịch" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Không thể xóa tin nhắn này." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Không thể đọc URL cho hình đại diện '%s'" @@ -461,6 +543,8 @@ msgstr "Không thể đọc URL cho hình đại diện '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Không thể lưu mật khẩu mới" @@ -468,32 +552,35 @@ msgstr "Không thể lưu mật khẩu mới" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Hủy" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Không thể thiết lập đối tượng OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Không thể bình thường hóa Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 #, fuzzy msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa địa chỉ GTalk này" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Thay đổi" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Đang thực hiện việc thay đổi email" @@ -503,11 +590,12 @@ msgid "Change password" msgstr "Đổi mật khẩu" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Thay đổi mật khẩu của bạn" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" @@ -517,6 +605,9 @@ msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Xác nhận" @@ -529,12 +620,14 @@ msgstr "Xác nhận địa chỉ" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Sự xác nhận đã bị hủy bỏ." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 #, fuzzy msgid "Confirmation code" msgstr "Không có mã số xác nhận." @@ -544,7 +637,8 @@ msgstr "Không có mã số xác nhận." msgid "Confirmation code not found." msgstr "Không tìm thấy mã xác nhận." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -576,20 +670,24 @@ msgstr "" "Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Kết nối" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Kết nối đến tài khoản hiện hữu" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Liên hệ" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Không thể tạo OpenID mẫu: %s" @@ -597,37 +695,41 @@ msgstr "Không thể tạo OpenID mẫu: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 #, fuzzy msgid "Could not follow user: User not found." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Không thể chuyển đến máy chủ: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Không thể lưu hình đại diện" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Không thể lưu thông tin về hồ sơ cá nhân" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 #, fuzzy msgid "Could not subscribe other to you." msgstr "Không thể tạo favorite." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 #, fuzzy msgid "Could not subscribe." msgstr "Chưa đăng nhận!" @@ -648,15 +750,17 @@ msgstr "Không thể chuyển các token yêu cầu đến token truy cập." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nhận." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Không tìm thấy bất kỳ trạng thái nào." @@ -669,23 +773,27 @@ msgstr "Không thể lấy token yêu cầu." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Không thể chèn mã xác nhận." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Không thể lưu hồ sơ cá nhân." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 #, fuzzy msgid "Couldn't update user for autosubscribe." msgstr "Không thể cập nhật thành viên." @@ -693,6 +801,11 @@ msgstr "Không thể cập nhật thành viên." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 #, fuzzy msgid "Couldn't update user record." msgstr "Không thể cập nhật thành viên." @@ -709,42 +822,48 @@ msgstr "Không thể cập nhật thành viên." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Không thể cập nhật thành viên." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Tạo" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Tạo người dùng mới với tên đăng nhập này." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Tạo tài khoản mới" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Tạo tài khoản mới hoặc dùng OpenID" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Địa chỉ Jabber/GTalk vừa được xác nhận." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "SMS xác nhận ngay - đã cho phép gửi qua điện thoại. " #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Đã xác nhận địa chỉ này." @@ -753,23 +872,27 @@ msgid "Currently" msgstr "Hiện tại" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, fuzzy, php-format msgid "DB error inserting hashtag: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Xóa tin nhắn" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" @@ -777,11 +900,13 @@ msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký t #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 #, fuzzy msgid "Email Address" msgstr "Địa chỉ email" @@ -792,40 +917,44 @@ msgid "Email Settings" msgstr "Thiết lập địa chỉ email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Địa chỉ email đã tồn tại." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Xac nhan dia chi email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 #, fuzzy msgid "Email address, like \"UserName@example.org\"" msgstr "Địa chỉ email GTalk, Ví dụ: \"UserName@gmail.com\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Địa chỉ email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Nhập biệt hiệu hoặc email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Nhập mã mà bạn nhận được trên điện thoại của bạn." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Lỗi cho phép token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Lỗi xảy ra khi kết nối với OpenId" @@ -836,39 +965,46 @@ msgstr "Lỗi khi kết nối người dùng." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Lỗi xảy ra khi thêm mới hình đại diện" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Lỗi xảy ra khi lưu địa chỉ đã được xác nhận." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Lỗi xảy ra khi lưu thành viên." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." @@ -877,6 +1013,9 @@ msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Lỗi xảy ra khi tạo thành viên." @@ -887,6 +1026,7 @@ msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" @@ -896,33 +1036,36 @@ msgid "Error with confirmation code." msgstr "Lỗi xảy ra với mã xác nhận." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Biệt hiệu này đã tồn tại" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Cập nhật hình đại diện không thành công." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Chọn những người bạn của %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Chọn các phản hồi đến %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, fuzzy, php-format msgid "Feed for tag %s" msgstr "Chọn các phản hồi đến %s" @@ -937,7 +1080,7 @@ msgstr "Tìm theo nội dung của tin nhắn" msgid "Find people on this site" msgstr "Tìm kiếm mọi người trên trang web này" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -950,6 +1093,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Tên đầy đủ" @@ -958,23 +1106,33 @@ msgstr "Tên đầy đủ" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hướng dẫn" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Trang chủ" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Trang chủ hoặc Blog" @@ -982,21 +1140,27 @@ msgstr "Trang chủ hoặc Blog" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Trang chủ không phải là URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Tôi muốn đưa tin nhắn lên bằng email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM" @@ -1006,7 +1170,7 @@ msgid "IM Settings" msgstr "Cấu hình IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1014,7 +1178,7 @@ msgstr "" "Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " "nối với OpenId của bạn." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1022,7 +1186,7 @@ msgstr "" "Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " "nhấn\" Thêm\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1033,26 +1197,32 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 #, fuzzy msgid "Incoming email address removed." msgstr "Địa chỉ email hoặc mật khẩu không đúng." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Mật khẩu cũ sai" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Sai tên đăng nhập hoặc mật khẩu." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1061,30 +1231,31 @@ msgstr "" "trong tài khoản của bạn." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL cho hình đại diện '%s' không hợp lệ " #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Địa chỉ email không đúng:%s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Trang chủ '%s' không hợp lệ" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL cấp phép '%s' không hợp lệ" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Nội dung tin nhắn không hợp lệ" @@ -1099,13 +1270,13 @@ msgid "Invalid notice url" msgstr "URL tin nhắn không hợp lệ" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL hồ sơ cá nhân của '%s' không hợp lệ" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL hồ sơ cá nhân không đúng định dạng." @@ -1123,28 +1294,35 @@ msgstr "Kích thước không hợp lệ." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Thư mời đã gửi" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Thư mời đã gửi đến:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Thư mời" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Gửi thư mời đến những người chưa có tài khoản" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1152,15 +1330,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản " -"quyền [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID này đã thuộc về người khác rồi." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1170,12 +1349,14 @@ msgstr "" "tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Ngôn ngữ" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 #, fuzzy msgid "Language is too long (max 50 chars)." msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." @@ -1185,7 +1366,15 @@ msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Thành phố" @@ -1194,7 +1383,12 @@ msgstr "Thành phố" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." @@ -1203,18 +1397,22 @@ msgstr "Tên khu vực quá dài (không quá 255 ký tự)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Đăng nhập" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Đăng nhập bằng tài khoản [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1225,22 +1423,26 @@ msgstr "" "khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " "bằng [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Thoát" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Họ tên đầy đủ của bạn, tốt nhất là tên thật của bạn." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mất hoặc quên mật khẩu?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " @@ -1251,16 +1453,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Bạn nhận email từ %%site.name%% như thế nào." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Gia nhập từ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog bởi %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1273,43 +1477,51 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Ghi chú và các file của tôi đã có ở phía dưới" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Mới" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Dia chi email moi de gui tin nhan den %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 #, fuzzy msgid "New incoming email address added." msgstr "Đã xác nhận địa chỉ này." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Biệt hiệu mới" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Thông báo mới" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Mật khẩu mới" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." @@ -1319,7 +1531,13 @@ msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập nga #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Biệt danh" @@ -1328,7 +1546,12 @@ msgstr "Biệt danh" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." @@ -1337,48 +1560,59 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Biệt hiệu không được cho phép." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Biệt hiệu của thành viên mà bạn muốn theo" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Biệt hiệu hoặc email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Không" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Không có Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Không có yêu cầu!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 #, fuzzy msgid "No carrier selected." msgstr "Bạn chưa chọn hình để đưa lên." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Không có mã nào được nhập" @@ -1390,11 +1624,15 @@ msgstr "Không có mã số xác nhận." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Không có nội dung!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Không có địa chỉ email." @@ -1403,7 +1641,9 @@ msgid "No id." msgstr "Không có id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 #, fuzzy msgid "No incoming email address." msgstr "Địa chỉ email không hợp lệ." @@ -1415,6 +1655,7 @@ msgstr "Không có biệt hiệu được cung cấp." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Không có biệt hiệu." @@ -1422,12 +1663,14 @@ msgstr "Không có biệt hiệu." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Sự xác nhận chưa được hủy bỏ." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Không có số điện thoại." @@ -1437,7 +1680,8 @@ msgid "No profile URL returned by server." msgstr "Không có URL cho hồ sơ để quay về." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Thành viên này đã không đăng ký địa chỉ email." @@ -1449,7 +1693,7 @@ msgstr "Không tìm thấy yêu cầu nào!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Không có kết quả nào" @@ -1460,12 +1704,16 @@ msgstr "Không có kích thước." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." @@ -1475,13 +1723,15 @@ msgid "No such OpenID." msgstr "Không có OpenID nào." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Không có tài liệu nào." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Không có tin nhắn nào." @@ -1519,12 +1769,22 @@ msgstr "Không có đăng ký nào." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Không có user nào." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" "Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." @@ -1539,33 +1799,39 @@ msgid "Not a recovery code." msgstr "Mã khôi phục không đúng." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Không có người dùng nào đăng ký" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID không hợp lệ" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID không hợp lệ." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 #, fuzzy msgid "Not a valid email address" msgstr "Địa chỉ email không hợp lệ." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." @@ -1573,6 +1839,11 @@ msgstr "Địa chỉ email không hợp lệ." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Biệt hiệu không hợp lệ." @@ -1592,7 +1863,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "File hỏng hoặc không phải là file ảnh." @@ -1603,11 +1875,13 @@ msgstr "Chưa được phép." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Không mong đợi trả lời lại!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Không tìm thấy" @@ -1623,11 +1897,15 @@ msgstr "Không tìm thấy" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Chưa đăng nhập." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Chưa đăng nhận!" @@ -1644,39 +1922,44 @@ msgid "Notice feed for %s" msgstr "Dòng tin nhắn cho %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Tin nhắn không có hồ sơ cá nhân" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Tin nhắn" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Thông báo được gắn thẻ %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Mật khẩu cũ" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Tạo tài khoản OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Tự động nhập OpenID" @@ -1684,29 +1967,34 @@ msgstr "Tự động nhập OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Đăng nhập OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Xác thực OpenID bị hủy." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Xác thực OpendID bị lỗi: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID lỗi: %s" @@ -1722,11 +2010,12 @@ msgid "OpenID settings" msgstr "Cấu hình OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Không bắt buộc phải thêm thông điệp vào thư mời." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Upload từng phần." @@ -1736,34 +2025,46 @@ msgstr "Upload từng phần." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Mật khẩu" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Mật khẩu và mật khẩu xác nhận không khớp nhau." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Mật khẩu phải nhiều hơn 6 ký tự." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Đã lưu mật khẩu." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Mật khẩu không khớp." @@ -1784,14 +2085,17 @@ msgid "People search" msgstr "Tìm kiếm nhiều người" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Cá nhân" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Tin nhắn cá nhân" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " @@ -1806,7 +2110,7 @@ msgstr "" "của họ, hãy nhấn \"Hủy bỏ\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTalk " @@ -1815,7 +2119,9 @@ msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTa #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Tính năng" @@ -1824,42 +2130,52 @@ msgstr "Tính năng" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Các tính năng đã được lưu." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Ngôn ngữ bạn thích" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Riêng tư" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Hồ sơ " #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL của Hồ sơ cá nhân" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Các thiết lập cho Hồ sơ cá nhân" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Hồ sơ này không biết" @@ -1868,17 +2184,19 @@ msgid "Public Stream Feed" msgstr "Dòng tin công cộng" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Dòng tin công cộng" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." @@ -1888,12 +2206,14 @@ msgid "Recent Tags" msgstr "Các từ khóa hiện tại" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Khôi phục" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Khôi phục mật khẩu" @@ -1906,38 +2226,46 @@ msgstr "Khôi phục lại code cho user không đăng ký." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 #, fuzzy msgid "Registration not allowed." msgstr "Biệt hiệu không được cho phép." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Đăng ký thành công" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Từ chối" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Nhớ tôi" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Đăng nhận từ xa" @@ -1951,6 +2279,9 @@ msgstr "Đăng nhận từ xa" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Xóa" @@ -1959,7 +2290,7 @@ msgstr "Xóa" msgid "Remove OpenID" msgstr "Xóa OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1968,34 +2299,41 @@ msgstr "" "hãy tạo một OpenID khác trước đã." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Trả lời" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Trả lời cho %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Khởi tạo" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Khởi tạo lại mật khẩu" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Số điện thoại để nhắn SMS " @@ -2004,17 +2342,18 @@ msgstr "Số điện thoại để nhắn SMS " msgid "SMS Settings" msgstr "Thiết lập SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Xác nhận SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Cùng mật khẩu ở trên" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." @@ -2027,12 +2366,21 @@ msgstr "Cùng mật khẩu ở trên. Bắt buộc." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lưu" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Tìm kiếm" @@ -2042,7 +2390,7 @@ msgid "Search Stream Feed" msgstr "Tìm kiếm dòng thông tin" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2051,7 +2399,7 @@ msgstr "" "Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ " "cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2061,33 +2409,38 @@ msgstr "" "họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Chọn nhà cung cấp Mobile" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Gửi" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2096,17 +2449,20 @@ msgstr "" "cho dịch vụ của chúng tôi. " #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " "Jabber/GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Điều chỉnh" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2126,27 +2482,32 @@ msgid "Something weird happened." msgstr "Vài điều bất thường xảy ra." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Xin lỗi, không có địa chỉ email cho phép." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Nguồn" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Số liệu thống kê" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Không tìm thấy OpenID." @@ -2154,24 +2515,28 @@ msgstr "Không tìm thấy OpenID." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Theo bạn này" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Bạn này theo tôi" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Đăng nhận được phép" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Đăng nhận từ chối" @@ -2179,28 +2544,35 @@ msgstr "Đăng nhận từ chối" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn này" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Hệ thống xảy ra lỗi trong khi tải file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Từ khóa" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Chuỗi bất kỳ" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Chuỗi cần tìm" @@ -2220,6 +2592,7 @@ msgid "That confirmation code is not for you!" msgstr "Mã xác nhận này không phải của bạn!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 #, fuzzy msgid "That email address already belongs to another user." msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." @@ -2230,52 +2603,56 @@ msgid "That file is too big." msgstr "File quá lớn." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 #, fuzzy msgid "That is already your email address." msgstr "Bạn đã dùng địa chỉ email này rồi" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 #, fuzzy msgid "That is already your phone number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Đây không phải Jabber ID của bạn." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 #, fuzzy msgid "That is not your email address." msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Sai IM." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 #, fuzzy msgid "That is the wrong confirmation number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 #, fuzzy msgid "That phone number already belongs to another user." msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi." @@ -2283,15 +2660,21 @@ msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi. #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Quá dài. Tối đa là 140 ký tự." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Tin nhắn quá dài. Chỉ được phép tối đa 255 ký tự." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của bạn." @@ -2300,11 +2683,14 @@ msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của b #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Đã xóa địa chỉ." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2314,7 +2700,8 @@ msgstr "" "hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " "của bạn là:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2324,35 +2711,40 @@ msgstr "" "các hướng dẫn chi tiết trên site để " #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Có nhiều người nghe theo lời nhắn của %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Có nhiều người nghe theo lời nhắn của bạn." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo " "người này\" để theo họ:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2361,7 +2753,7 @@ msgstr "" "cung cấp OpenID của bạn." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2376,6 +2768,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Phương thức này yêu cầu là POST hoặc DELETE" @@ -2384,25 +2779,37 @@ msgstr "Phương thức này yêu cầu là POST hoặc DELETE" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Phương thức này yêu cầu là POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Khu vực" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2415,18 +2822,21 @@ msgstr "" "của bạn dưới đây." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác" @@ -2438,15 +2848,22 @@ msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogg #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Bất ngờ gửi mẫu thông tin. " #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Bất ngờ reset mật khẩu." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Không tìm thấy action" @@ -2477,38 +2894,47 @@ msgstr "Hết theo" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Không hỗ trợ cho version OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Không hỗ trợ kiểu file ảnh này." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Thay đổi bởi SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Thay đổi bởi tin nhắn nhanh (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Tải file" @@ -2528,6 +2954,7 @@ msgid "Upload a new profile image" msgstr "Tải lên một file ảnh mới cho hồ sơ cá nhân" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2535,7 +2962,9 @@ msgstr "" "của bạn tham gia vào dịch vụ này." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Chỉ dùng để cập nhật, thông báo, và hồi phục mật khẩu" @@ -2559,11 +2988,16 @@ msgstr "Người dùng đang lắng nghe để không thoát khỏi." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Người dùng không có thông tin." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Biệt hiệu của người dùng" @@ -2572,29 +3006,33 @@ msgid "User not found." msgstr "Không tìm thấy user." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Khu vực nào bạn thường ở?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Bạn đang làm gì thế, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Kiểu file ảnh không phù hợp với '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Kích thước file ảnh không phù hợp đối với '%s'" @@ -2602,7 +3040,9 @@ msgstr "Kích thước file ảnh không phù hợp đối với '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Có" @@ -2623,11 +3063,12 @@ msgid "You are already logged in!" msgstr "Bạn đã đăng nhập!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Bạn đã theo những người này:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 #, fuzzy msgid "You are not friends with the specified user." msgstr "Bạn đã theo những người này:" @@ -2646,7 +3087,7 @@ msgstr "Bạn có thể tạo tài khoản mới để có thể gửi ý kiến msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2655,6 +3096,7 @@ msgstr "" "\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2663,7 +3105,8 @@ msgstr "" "Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" "(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2674,21 +3117,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Bạn có thể đăng ký tại nơi bạn ở!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Bạn chưa cập nhật thông tin riêng" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2710,16 +3155,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Bạn đã không xóa trạng thái của những người khác." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2727,20 +3175,21 @@ msgstr "" "Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng " "ký vào trang web này. Cảm ơn bạn " -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URL của bạn" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký bằng email này rồi." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2749,47 +3198,57 @@ msgstr "" "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " "lý các OpenID của bạn ở đây." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "vài giây trước" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "1 ngày trước" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1 phút trước" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1 tháng trước" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1 năm trước" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1 giờ trước" @@ -2811,12 +3270,14 @@ msgid "reply" msgstr "trả lời" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "cùng mật khẩu ở trên" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 #, fuzzy msgid "unsupported file type" msgstr "Không hỗ trợ kiểu file ảnh này." @@ -2839,6 +3300,26 @@ msgstr "Sau" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." @@ -2848,6 +3329,7 @@ msgid "This notice is not a favorite!" msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 #, fuzzy msgid "Could not delete favorite." msgstr "Không thể tạo favorite." @@ -2857,24 +3339,30 @@ msgstr "Không thể tạo favorite." msgid "Favor" msgstr "Ưa thích" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " "thích của họ." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Không thể tạo favorite." @@ -2884,11 +3372,13 @@ msgstr "Không thích" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s ưa thích các tin nhắn" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, fuzzy, php-format msgid "Feed of favorite notices of %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" @@ -2933,36 +3423,47 @@ msgid "Login with your username and password. " msgstr "Sai tên đăng nhập hoặc mật khẩu." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 #, fuzzy msgid "That's too long. Max message size is 140 chars." msgstr "Quá dài. Tối đa là 140 ký tự." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 #, fuzzy msgid "You can't send a message to this user." msgstr "Bạn đã theo những người này:" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 #, fuzzy msgid "No such user" msgstr "Không có user nào." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 #, fuzzy msgid "New message" msgstr "Tin mới nhất" @@ -3036,6 +3537,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #, fuzzy msgid "User without matching profile" msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" @@ -3070,6 +3576,8 @@ msgid "New password successfully saved. " msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 #, fuzzy msgid "Password must be 6 or more characters." msgstr "Mật khẩu phải nhiều hơn 6 ký tự." @@ -3094,12 +3602,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Không thể lấy lại các tin nhắn ưa thích" @@ -3107,7 +3618,7 @@ msgstr "Không thể lấy lại các tin nhắn ưa thích" msgid "No such message." msgstr "Không có tin nhắn nào." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient may read this message." msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" @@ -3133,54 +3644,73 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, fuzzy, php-format msgid "Direct messages to %s" msgstr "Tin nhắn riêng" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 #, fuzzy msgid "Direct Messages You've Sent" msgstr "Tin nhắn riêng" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, fuzzy, php-format msgid "All the direct messages sent from %s" msgstr "Bạn có tin nhắn riêng từ %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 #, fuzzy msgid "No message text!" msgstr "Không có tin nhắn nào." #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 #, fuzzy msgid "Recipient user not found." msgstr "Không tìm thấy user." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, fuzzy, php-format msgid "%s / Favorites from %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, fuzzy, php-format msgid "%s updates favorited by %s / %s." msgstr "Tất cả các cập nhật của %s" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" @@ -3191,7 +3721,8 @@ msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" -msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" +msgstr "" +"%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" "\n" #: actions/twittersettings.php:27 @@ -3203,14 +3734,17 @@ msgstr "" "bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Thiết lập tài khoản Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Tài khoản Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Tài khoản Twitter đã được xác nhận." @@ -3219,6 +3753,7 @@ msgid "Twitter Username" msgstr "Tên tài khoản Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Không nhập ký tự trắng." @@ -3227,18 +3762,22 @@ msgid "Twitter Password" msgstr "Mật khẩu Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Tự động gửi tin nhắn của tôi đến Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Đăng ký theo những bạn trên Twitter tại đây." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 #, fuzzy msgid "" "Username must have only numbers, upper- and lowercase letters, and " @@ -3248,6 +3787,7 @@ msgstr "" "gạch dưới (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Không thể xác nhận tài khoản Twitter của bạn!" @@ -3258,34 +3798,44 @@ msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Không thể lưu thông tin Twitter của bạn!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 #, fuzzy msgid "Twitter settings saved." msgstr "Thiết lập tài khoản Twitter" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Không phải là tài khoản Twitter của bạn." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Không thể xóa tài khoản Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Tài khoản Twitter đã xóa." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Không thể lưu các yêu cầu cho tài khoản Twitter. " #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Các yêu cầu cho tài khoản Twitter đã lưu" @@ -3304,20 +3854,21 @@ msgid "The subscription has been rejected, but no " msgstr "Đăng nhận từ chối" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 #, fuzzy msgid "Command results" msgstr "Không có kết quả nào" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 #, fuzzy msgid "Command failed" msgstr " và bạn bè" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3327,94 +3878,116 @@ msgid "Subscriptions: %1$s\n" msgstr "Tôi theo: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 #, fuzzy msgid "User has no last notice" msgstr "Người dùng không có thông tin." -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 #, fuzzy msgid "Notice marked as fave." msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, fuzzy, php-format msgid "%1$s (%2$s)" msgstr "%s (%s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Tên đầy đủ" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, fuzzy, php-format msgid "Location: %s" msgstr "Thành phố: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, fuzzy, php-format msgid "About: %s" msgstr "Giới thiệu" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, fuzzy, php-format msgid "Direct message to %s sent" msgstr "Tin nhắn riêng" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 #, fuzzy msgid "Error sending direct message." msgstr "Thư bạn đã gửi" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, fuzzy, php-format msgid "Subscribed to %s" msgstr "Theo nhóm này" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "Hết theo" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 #, fuzzy msgid "Notification off." msgstr "Không có mã số xác nhận." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 #, fuzzy msgid "Notification on." msgstr "Không có mã số xác nhận." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3422,12 +3995,12 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 #, fuzzy msgid "Could not insert message." msgstr "Không thể chèn thêm vào đăng nhận." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 #, fuzzy msgid "Could not update message with new URI." msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." @@ -3444,7 +4017,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" @@ -3456,7 +4029,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3465,31 +4038,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Ưa thích" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Những tin nhắn ưa thích của %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Hộp thư đến" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Thư đến của bạn" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Hộp thư đi" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Thư bạn đã gửi" @@ -3503,15 +4084,20 @@ msgid "Twitter integration options" msgstr "Các lựa chọn để tích hợp với Twitter " #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 #, fuzzy msgid "Could not parse message." msgstr "Không thể cập nhật thành viên." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s và bạn bè" @@ -3524,21 +4110,31 @@ msgstr "" "về bạn." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Thay đổi hình đại diện" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Xem trước" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 #, fuzzy msgid "Crop" msgstr "Nhóm" @@ -3557,37 +4153,46 @@ msgid "There was a problem with your session token. " msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Không có tin nhắn nào." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "Không hỗ trợ kiểu file ảnh này." #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Ban user" @@ -3597,12 +4202,12 @@ msgstr "Ban user" msgid "Are you sure you want to block this user? " msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Bạn đã theo những người này:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3621,42 +4226,60 @@ msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấ msgid "Add to favorites" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, fuzzy, php-format msgid "Edit %s group" msgstr "%s và nhóm" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 #, fuzzy msgid "You must be logged in to create a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Không có biệt hiệu." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Không có user nào." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 #, fuzzy msgid "You must be an admin to edit the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3666,16 +4289,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Không thể cập nhật thành viên." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Đã lưu các điều chỉnh." @@ -3695,7 +4319,8 @@ msgstr "Dia chi email moi de gui tin nhan den %s" msgid "Send me email when someone " msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3711,7 +4336,7 @@ msgstr "" "Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " "tin nhắn đến bạn." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3725,55 +4350,70 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Không có nội dung!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "Sau" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Trước" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Thư mời đã gửi đến:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Mời bạn bè" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3822,13 +4462,15 @@ msgstr "" msgid "Sync preferences" msgstr "Tính năng" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Không thích" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Các tin nhắn bị cảnh báo" @@ -3844,7 +4486,8 @@ msgid "The most popular notices on the site right now." msgstr "Các từ khóa phổ biến." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3858,15 +4501,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 #, fuzzy msgid "Group logo" msgstr "Mã nhóm" @@ -3875,12 +4520,14 @@ msgstr "Mã nhóm" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Hình đại diện đã được cập nhật." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Cập nhật hình đại diện không thành công." @@ -3900,7 +4547,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 #, fuzzy msgid "Groups" msgstr "Nhóm" @@ -3916,6 +4564,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Tạo nhóm" @@ -3928,7 +4577,7 @@ msgstr "" "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " "họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Tìm kiếm nhiều người" @@ -3953,22 +4602,22 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Không có mã số xác nhận." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Bạn đã theo những người này:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s và nhóm" @@ -3977,17 +4626,20 @@ msgstr "%s và nhóm" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Không có tin nhắn nào." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Bạn chưa cập nhật thông tin riêng" @@ -3997,22 +4649,26 @@ msgstr "Bạn chưa cập nhật thông tin riêng" msgid "You may not leave a group while you are its administrator." msgstr "Bạn đã không xóa trạng thái của những người khác." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Không thể cập nhật thành viên." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, fuzzy, php-format msgid "%s left group %s" msgstr "%s và nhóm" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -4025,16 +4681,18 @@ msgstr "" msgid "New group" msgstr "Tạo nhóm" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nhận." @@ -4049,12 +4707,15 @@ msgstr "File quá lớn." msgid "Don't send a message to yourself; " msgstr "Bạn đã theo những người này:" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Tin đã gửi" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 #, fuzzy msgid "Ajax Error" msgstr "Lỗi" @@ -4074,7 +4735,7 @@ msgstr "Tin đã gửi" msgid "Nudge sent!" msgstr "Tin đã gửi" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Đăng nhập OpenID" @@ -4102,11 +4763,13 @@ msgstr "" msgid "Service" msgstr "Tìm kiếm" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." @@ -4116,17 +4779,18 @@ msgstr "Tên khu vực quá dài (không quá 255 ký tự)." msgid "Change your password." msgstr "Thay đổi mật khẩu của bạn" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Đã lưu mật khẩu." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Địa chỉ email không hợp lệ." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -4136,12 +4800,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Hồ sơ này không biết" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4152,21 +4817,26 @@ msgid "Automatically subscribe to whoever " msgstr "Tự động theo những người nào đăng ký theo tôi" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Dòng tin công cộng" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "Không thể lấy lại các tin nhắn ưa thích" @@ -4188,11 +4858,13 @@ msgstr "Dòng tin công cộng" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4251,7 +4923,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Trả lời cho %s" @@ -4261,53 +4934,74 @@ msgstr "Trả lời cho %s" msgid "%s favorite notices, page %d" msgstr "%s ưa thích các tin nhắn" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, fuzzy, php-format msgid "%s group" msgstr "%s và nhóm" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Thông tin nhóm" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Tin nhắn" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Mã nhóm" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Thành viên" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 #, fuzzy msgid "All members" msgstr "Thành viên" @@ -4324,7 +5018,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Hộp thư đến của %s - trang %d" @@ -4335,35 +5029,42 @@ msgid "'s profile" msgstr "Hồ sơ" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Hồ sơ" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Không tìm thấy action" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Bạn đã theo những người này:" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Tin mới nhất" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Bạn này theo tôi" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 #, fuzzy msgid "All groups" msgstr "Nhóm" @@ -4390,7 +5091,7 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Chọn nhà cung cấp Mobile" @@ -4455,17 +5156,18 @@ msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." msgid "These are the people whose " msgstr "Có nhiều người nghe theo lời nhắn của %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Không có Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4490,7 +5192,7 @@ msgstr "Từ khóa" msgid "Tag user" msgstr "Từ khóa" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4501,17 +5203,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4520,20 +5222,23 @@ msgstr "" msgid "No such tag." msgstr "Không có tin nhắn nào." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog bởi %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Không tìm thấy" @@ -4545,17 +5250,18 @@ msgstr "" "Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " "bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Tên tài khoản Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Mật khẩu Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Thiết lập tài khoản Twitter" @@ -4569,159 +5275,168 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Lỗi xảy ra khi lưu thành viên." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Không có URL cho hồ sơ để quay về." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Hết theo" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, fuzzy, php-format msgid "%s groups" msgstr "%s và nhóm" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Cập nhật hình đại diện không thành công." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 #, fuzzy msgid "Other" msgstr "Sau" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Giới thiệu" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Không có OpenID nào." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ban user" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4735,12 +5450,15 @@ msgstr "cảnh báo tin nhắn" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Tạo tài khoản mới" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Công cộng" @@ -4762,34 +5480,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Từ khóa" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Mô tả" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4799,21 +5522,21 @@ msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" msgid "Group" msgstr "Nhóm" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Thoát" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4847,12 +5570,12 @@ msgstr "Đăng nhập" msgid "Leave" msgstr "Lưu" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Sai tên đăng nhập hoặc mật khẩu." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Tạo tài khoản mới" @@ -4873,24 +5596,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Thành phố: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Trang chủ hoặc Blog: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4905,46 +5628,54 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr " từ" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Xóa tin nhắn" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Thông báo mới" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Nhiều hơn 6 ký tự" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "còn nữa..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -4969,29 +5700,31 @@ msgstr "Bạn đã theo những người này:" msgid "Tags in %s's notices" msgstr "cảnh báo tin nhắn" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Công cộng" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 #, fuzzy msgid "User groups" msgstr "Hồ sơ" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Các từ khóa hiện tại" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Tên tài khoản" @@ -5010,34 +5743,36 @@ msgstr "Tìm kiếm mọi người trên trang web này" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Đăng nhận từ xa" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Theo nhóm này" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" "Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " "của bạn tham gia vào dịch vụ này." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Người dùng không có thông tin." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Theo nhóm này" @@ -5053,10 +5788,11 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Bỏ chặn người dùng này" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Bỏ chặn" @@ -5064,6 +5800,2113 @@ msgstr "Bỏ chặn" msgid "Unsubscribe from this user" msgstr "Ngừng đăng ký từ người dùng này" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s và bạn bè" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" +"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " +"về bạn." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Hình đại diện đã được cập nhật." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog bởi %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " +"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Thư bạn đã gửi" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Tìm dòng thông tin cho \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " +"đổi trong điều chỉnh." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Tạo" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Thông tin nhóm" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Hồ sơ" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Hộp thư đi của %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Hình đại diện" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " +"làm theo hướng dẫn." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Không có user nào." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " +"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Tin đã gửi" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " +"nối với OpenId của bạn." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, fuzzy, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Chào, %1$s .\n" +"\n" +"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" +"\n" +"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " +"dẫn dưới đây: \n" +"\n" +"\t%3$s\n" +"\n" +"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" +"\n" +"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" +"\n" +"%4$s\n" +"\n" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Người bạn trung thành của bạn,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Bạn có thể trả lời tại:\n" +"\n" +"%4$s\n" +"\n" +"Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Tìm kiếm" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Không có tài liệu nào." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ban user" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Hồ sơ" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s và bạn bè" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Bỏ chặn người dùng này" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Không có mã số xác nhận." + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Không thể xóa tin nhắn này." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Trang chủ '%s' không hợp lệ" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Không thể tạo favorite." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Thông báo mới" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Thông báo mới" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Biệt hiệu không hợp lệ." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Người dùng không có thông tin." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ban user" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Nhóm" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Không thể cập nhật thành viên." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Không thể lưu thông tin Twitter của bạn!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Các tính năng đã được lưu." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make this user an admin" +msgstr "Kênh mà bạn tham gia" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Không có kết quả nào" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Người dùng không có thông tin." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Tin mới nhất" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Không thể lưu hồ sơ cá nhân." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " +"lý các OpenID của bạn ở đây." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " +"chỉ email lưu trong tài khoản của bạn." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Lỗi xảy ra với mã xác nhận." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Theo nhóm này" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s ưa thích các tin nhắn" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Không có user nào." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Thông báo được gắn thẻ %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Không thể lấy lại các tin nhắn ưa thích" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Không tìm thấy bất kỳ trạng thái nào." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Dòng tin nhắn cho %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Tất cả đăng nhận" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "%s chào mừng bạn " + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Hồ sơ" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Hồ sơ " + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +#, fuzzy +msgid "Change background image" +msgstr "Background Theme:" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Tải file" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Background Theme:" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Thay đổi mật khẩu của bạn" + +#: lib/designsettings.php:178 +#, fuzzy +msgid "Background" +msgstr "Background Theme:" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kết nối" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Tìm kiếm" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Đăng nhập" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Lưu" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Ban user" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Ban user" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Không có nội dung!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Tìm kiếm" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Trang chủ không phải là URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Không có tin nhắn nào." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Tin nhắn riêng" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Bạn đã theo những người này:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s và nhóm" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Thành viên" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Mã nhóm" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Không hỗ trợ kiểu file ảnh này." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Tất cả các cập nhật của %s" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Người dùng đang lắng nghe để không thoát khỏi." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Chưa được phép." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Không thể chuyển các token yêu cầu đến token truy cập." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Không biết phiên bản của giao thức OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Không có tin nhắn nào." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Không có tin nhắn nào." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " +"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Các thay đổi phù hợp với từ \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Không thể lấy token yêu cầu." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Trả lời cho %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s và nhóm" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Tin đã gửi" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " +"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " +"của bạn là:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " +"các hướng dẫn chi tiết trên site để " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Không thể đọc URL cho hình đại diện '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kiểu file ảnh không phù hợp với '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Không thể chuyển đến máy chủ: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Tìm theo nội dung của tin nhắn" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tin đã gửi" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Trả lời tin nhắn này" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Không có mã số xác nhận." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Chọn nhà cung cấp Mobile" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Dòng tin nhắn cho %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " từ " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Không thể tạo favorite." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Xóa tin nhắn" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Không thể tạo favorite." @@ -5097,21 +7940,14 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgstr "FAQ - Hỏi đáp" #~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, version " -#~ "%s, available under the [GNU Affero General Public License] (http://www." -#~ "fsf.org/licensing/licenses/agpl-3.0.html)." +#~ "It runs the [StatusNet](http://status.net/) microblogging software, " +#~ "version %s, available under the [GNU Affero General Public License] " +#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #~ msgstr "" #~ "Microblogging [StatusNet](http://status.net/), version %s đã có ở [GNU " #~ "Affero General Public License] (http://www.fsf.org/licensing/licenses/" #~ "agpl-3.0.html)." -#~ msgid "" -#~ "Login with your username and password. Don't have a username yet? " -#~ "[Register](%%action.register%%) a new account." -#~ msgstr "" -#~ "Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -#~ "khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." - #~ msgid "Password recovery requested " #~ msgstr "Yeu cau khoi phuc lai mat khau da duoc gui" @@ -5127,9 +7963,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Everyone" #~ msgstr "Tất cả mọi người" -#~ msgid "Welcome to %s" -#~ msgstr "%s chào mừng bạn " - #~ msgid "Blog + Chat = Fun" #~ msgstr "Vừa Blog vừa Chat = Vui Lắm" @@ -5182,9 +8015,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "Nếu cảm thấy nhàm chán với màu sắc cũ trên timeline của bạn, hãy thay đổi " #~ "màu sắc để trang %s của bạn hấp dẫn hơn." -#~ msgid "Background Theme:" -#~ msgstr "Background Theme:" - #~ msgid "Customize your theme" #~ msgstr "Tùy chỉnh theme " @@ -5212,9 +8042,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Customize your page even more with CSS" #~ msgstr "Tùy chỉnh trang của bạn bằng CSS" -#~ msgid "Save Changes" -#~ msgstr "Lưu" - #~ msgid "Change css code" #~ msgstr "Thay đổi code css" @@ -5242,34 +8069,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "replies" #~ msgstr "trả lời" -#~ msgid "" -#~ "%1$s just added your notice from %2$s as one of their favorites.\n" -#~ "\n" -#~ "In case you forgot, you can see the text of your notice here:\n" -#~ "\n" -#~ "%3$s\n" -#~ "\n" -#~ "You can see the list of %1$s's favorites here:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Faithfully yours,\n" -#~ "%5$s\n" -#~ msgstr "" -#~ "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích " -#~ "của mình.\n" -#~ "\n" -#~ "Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -#~ "\n" -#~ "%3$s\n" -#~ "\n" -#~ "Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Chúc sức khỏe,\n" -#~ "%5$s\n" - #~ msgid "Flag a notice" #~ msgstr "Cảnh báo tin nhắn" @@ -5300,38 +8099,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "Bạn có thể thay đổi theme bằng cách chọn một hình mẫu của các theme rồi " #~ "nhấn nút \"Lưu\" để đổi theme. " -#~ msgid "" -#~ "Hey, %1$s .\n" -#~ "\n" -#~ "Someone just entered this email address on %2$s.\n" -#~ "\n" -#~ "If it was you, and you want to confirm your entry, use the URL below: \n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "If not, just ignore this message.\n" -#~ "\n" -#~ "Thanks for your time,\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ msgstr "" -#~ "Chào, %1$s .\n" -#~ "\n" -#~ "Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" -#~ "\n" -#~ "Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " -#~ "dẫn dưới đây: \n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" -#~ "\n" -#~ "Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" - #~ msgid "" #~ "%1$s: confirm you own this phone number with this code:\n" #~ "\n" @@ -5343,37 +8110,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "%2$s\n" #~ "\n" -#~ msgid "" -#~ "%1$s (%2$s) sent you a private message:\n" -#~ "\n" -#~ "------------------------------------------------------\n" -#~ "%3$s\n" -#~ "------------------------------------------------------\n" -#~ "\n" -#~ "You can reply to their message here:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Don't reply to this email; it won't get to them.\n" -#~ "\n" -#~ "With kind regards,\n" -#~ "%5$s\n" -#~ msgstr "" -#~ "%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" -#~ "\n" -#~ "------------------------------------------------------\n" -#~ "%3$s\n" -#~ "------------------------------------------------------\n" -#~ "\n" -#~ "Bạn có thể trả lời tại:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" -#~ "\n" -#~ "Chúc sức khỏe,\n" -#~ "%5$s\n" - #~ msgid "Terms of use" #~ msgstr "TTSD" @@ -5667,9 +8403,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Register user by channel" #~ msgstr "Đăng ký theo kênh" -#~ msgid "The channel this user in" -#~ msgstr "Kênh mà bạn tham gia" - #~ msgid " Subscribe" #~ msgstr "Theo kênh này" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 7984ab714f69018929222c3933fe6c722432d092..2a5eaed9072301bef98986513dcb22156b43ba83 100644 GIT binary patch delta 29086 zcma*v2Y6IP!~gv~38A+TAdm#u1VShDu5^$lT?M3tWPv~mBmtzz0ycU(z)Dd-K~Xvj zL@82~V!?(eO_Y)VB4VM4sJ!3bo{2Zl{oMEedCzrCKGSE;oSCzmSWcbHbLeb{_k4*w zOI%zn^0-`4SUASz+7RM${n=KzF4y}0E>}3dg~jk7#^M*)6Yt{V*y(APD=+%6AijzX z@GUHa=dmXKfYmU3fXh|h zoCyubHl*jG2L2pNVMx5ol@BAaDpoYzbUG`4Qk@OF%(m<0D7?m&O|rkyH*k@gZq#raeZwn+(vbjKf!5G z7S%yb)C3!$CfFWTZy;*GRMe8sKsPQn`8!c7@)>HJZ1k#Po zRj@fW#RN>oS4??9kCP5XJ)$X?iJNdI#td`0#^Ncwi`|C1T#sUh5v+ejBF~SYb6k%d z@G_Rf8c8l!b!>$da1@rq**Fs4LUmM<#9Zu!kKp$>2g{A(apK#kJyC^O$KU|0iQZ(^ z-%VsA8Csg-sHM4tAsCe6EO~y^N|Zotrm`4}(O3{;QSIxX_DTnn?vHvjqp>zl!|}Kc zJ7P6&s?%XQ)*@pfYT)�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 X_K)0S{Vem}wx diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 5c2eced4e3..c3c256916f 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: identi.ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-28 14:03+0000\n" "Last-Translator: offacer \n" "Language-Team: i18n-zh \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "搜索有关\"%s\"的消息" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" @@ -35,17 +35,19 @@ msgid " from " msgstr " 从 " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / 回复 %2$s 的消息" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s 邀请您加入 %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -78,7 +80,8 @@ msgstr "" "%1$s 邀请你加入 %2$s (%3$s).\n" "\n" "%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n" -"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣的新朋友。\n" +"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣" +"的新朋友。\n" "\n" "%1$s 说:\n" "\n" @@ -96,6 +99,7 @@ msgstr "" "诚挚的感谢, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注您的 %2$s 信息。" @@ -117,25 +121,28 @@ msgstr "" "为您效力的 %4$s\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "回复 %2$s / %3$s 的 %1$s 更新。" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s 的 %2$s 状态" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s 公开聚合" @@ -145,40 +152,55 @@ msgstr "%s 公开聚合" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s 及好友" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公众时间表" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s 状态" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 时间表" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "来自所有人的 %s 消息!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -187,7 +209,8 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" @@ -199,30 +222,34 @@ msgstr "。贡献者应当有全名或昵称。" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点及空白" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 个或更多字符" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 个或更多字符,不能忘记!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 个或更多字符。此项必填。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -230,6 +257,7 @@ msgid "" msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -263,7 +291,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API 方法未实现!" @@ -286,16 +341,23 @@ msgstr "API 方法未实现!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API 方法尚未实现。" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "关于" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "接受" @@ -306,6 +368,9 @@ msgstr "接受" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "添加" @@ -323,27 +388,29 @@ msgstr "添加或移除 OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "地址" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "要邀请的好友地址(每行一个)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "所有订阅" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "所有 %s 消息" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "所有匹配搜索条件\"%s\"的消息" @@ -353,30 +420,37 @@ msgstr "所有匹配搜索条件\"%s\"的消息" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "已登录。" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "已订阅!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "确定要删除这条消息吗?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "确认订阅" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" @@ -384,22 +458,29 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "头像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "头像已更新。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" -msgstr "正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。(你是否已经添加 %s为你的好友?)" +msgstr "" +"正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" +"(你是否已经添加 %s为你的好友?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -408,7 +489,7 @@ msgstr "" "指示。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "等待确认此电话号码。" @@ -420,6 +501,8 @@ msgstr "下一页 »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "自述" @@ -427,16 +510,18 @@ msgstr "自述" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "自述过长(不能超过140字符)。" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "无法删除通告。" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "无法访问头像URL '%s'" @@ -444,6 +529,8 @@ msgstr "无法访问头像URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "无法保存新密码。" @@ -451,31 +538,34 @@ msgstr "无法保存新密码。" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "无法创建 OpenID 用户对象。" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "无法识别此Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "修改" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "修改电子邮件" @@ -485,11 +575,12 @@ msgid "Change password" msgstr "修改密码" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "修改密码" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "修改您的个人信息" @@ -499,6 +590,9 @@ msgstr "修改您的个人信息" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "确认" @@ -511,12 +605,14 @@ msgstr "确认地址" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "已取消确认。" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "确认码" @@ -525,7 +621,8 @@ msgstr "确认码" msgid "Confirmation code not found." msgstr "未找到确认码。" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -546,28 +643,35 @@ msgstr "" "恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n" "\n" "* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n" -"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消息平台发布信息。\n" -"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的朋友。 \n" -"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关于你的情况。 \n" +"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消" +"息平台发布信息。\n" +"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的" +"朋友。 \n" +"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关" +"于你的情况。 \n" "* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n" "\n" "感谢您的注册,希望您喜欢这个服务。" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "连接" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "连接现有帐号" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "联系人" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "无法创建 OpenID 表单:%s" @@ -575,35 +679,39 @@ msgstr "无法创建 OpenID 表单:%s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "无法订阅用户:%s 已在订阅列表中。" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "无法订阅用户:未找到。" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "无法重定向到服务器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "无法保存头像" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "无法保存个人信息" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "无法订阅他人更新。" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "无法订阅。" @@ -623,15 +731,17 @@ msgstr "无法将请求标记转换为访问令牌。" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "无法删除订阅。" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "找不到任何信息。" @@ -644,29 +754,38 @@ msgstr "无法获得一份请求标记。" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "无法插入验证码。" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "无法添加新的订阅。" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "无法保存个人信息。" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "无法更新用户的自动订阅选项。" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "无法更新用户记录。" @@ -682,42 +801,48 @@ msgstr "无法更新用户记录。" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "无法更新用户。" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "创建" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "创建使用此昵称的新用户。" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "创建新帐号" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "为 OpenID 用户产生新的帐号。" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "已确认的Jabber/GTalk帐号。" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "已确认的可以发送SMS短消息的电话号码。" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "已确认的电子邮件。" @@ -726,23 +851,27 @@ msgid "Currently" msgstr "目前" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "添加回复时数据库出错:%s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "删除通告" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "用不超过140个字符描述您自己和您的爱好" @@ -750,11 +879,13 @@ msgstr "用不超过140个字符描述您自己和您的爱好" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "电子邮件" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "电子邮件地址" @@ -764,39 +895,43 @@ msgid "Email Settings" msgstr "电子邮件设置" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "电子邮件地址已存在。" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "电子邮件地址确认" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "电子邮件,类似 \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "电子邮件地址" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "输入昵称或电子邮件。" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "输入手机收到的验证码。" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "无法认证令牌" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "无法将用户与 OpenID 连接。" @@ -807,39 +942,46 @@ msgstr "无法连接用户。" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "添加头像出错" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "添加个人信息出错" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "添加远程的个人信息出错" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "保存地址确认时出错。" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "保存远程的个人信息时出错" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "保存个人信息时出错。" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "保存用户时出错。" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "保存用户时出错;不正确。" @@ -848,6 +990,9 @@ msgstr "保存用户时出错;不正确。" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "保存用户设置时出错。" @@ -858,6 +1003,7 @@ msgstr "更新个人信息时出错" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "更新远程的个人信息时出错" @@ -867,33 +1013,36 @@ msgid "Error with confirmation code." msgstr "验证码出错。" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "昵称已被使用" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "常见问题FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "更新头像失败。" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s 好友的聚合" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s 回复的聚合" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "%s 标签的聚合" @@ -908,7 +1057,7 @@ msgstr "搜索通告内容" msgid "Find people on this site" msgstr "搜索用户信息" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -919,6 +1068,11 @@ msgstr "由于安全原因,修改设置前需要输入用户名和密码。" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "全名" @@ -927,23 +1081,33 @@ msgstr "全名" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "全名过长(不能超过 255 个字符)。" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "帮助" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "主页" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "主页" @@ -951,21 +1115,27 @@ msgstr "主页" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "我希望通过邮件发布信息。" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "即时通讯IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM 帐号" @@ -975,19 +1145,19 @@ msgid "IM Settings" msgstr "IM 设置" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "如果您已经拥有帐号,可以将它连接到您的 OpenID。请输入用户名和密码。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "如果您希望添加新的 OpenID,输入它并点击“添加”。" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -996,55 +1166,62 @@ msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "发布用的电子邮件" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "发布用的电子邮件被移除。" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "旧密码不正确" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "用户名或密码不正确。" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "恢复密码的指示已被发送到您的注册邮箱。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "头像URL '%s'不正确" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "电子邮件地址 %s 不正确" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "主页'%s'不正确" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "授权方式URL '%s'不正确" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "通告内容不正确" @@ -1059,13 +1236,13 @@ msgid "Invalid notice url" msgstr "通告URL不正确" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "个人信息URL '%s'不正确。" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "个人信息URL不正确(格式错误)" @@ -1083,28 +1260,35 @@ msgstr "大小不正确。" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "用户名或密码不正确。" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "已发送邀请" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "已发送邀请给这些人:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "邀请" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "邀请新用户" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1116,11 +1300,12 @@ msgstr "" "授权。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID 属于另一用户。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1130,12 +1315,14 @@ msgstr "" "或GTalk中将 %s 加为好友。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "语言" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "语言过长(不能超过50个字符)。" @@ -1144,7 +1331,15 @@ msgstr "语言过长(不能超过50个字符)。" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "位置" @@ -1153,7 +1348,12 @@ msgstr "位置" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "位置过长(不能超过255个字符)。" @@ -1162,43 +1362,51 @@ msgstr "位置过长(不能超过255个字符)。" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "登录" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "使用[OpenID](%%doc.openid%%)帐号登录。" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, 或使用 " -"[OpenID](%%action.openidlogin%%). " +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "登出" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "长名字,最好是“实名”" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "忘记了密码?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" @@ -1209,16 +1417,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "设置 %%site.name%% 发送的邮件。" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "用户始于" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s 的微博客服务" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1230,42 +1440,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "我的文字和文件采用的授权方式为" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "新建" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "新的电子邮件地址,用于发布 %s 信息" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新昵称" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新通告" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新密码" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新密码已保存,您现在已登录。" @@ -1275,7 +1493,13 @@ msgstr "新密码已保存,您现在已登录。" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "昵称" @@ -1284,7 +1508,12 @@ msgstr "昵称" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" @@ -1293,47 +1522,58 @@ msgstr "昵称已被使用,换一个吧。" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字,不包含空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "不允许的昵称。" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "希望订阅的用户的昵称" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "昵称或电子邮件" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "否" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "没有 Jabber ID。" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "未收到认证请求!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "未选择运营商。" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "没有输入验证码" @@ -1345,11 +1585,15 @@ msgstr "没有验证码" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "没有内容!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "没有电子邮件地址。" @@ -1358,7 +1602,9 @@ msgid "No id." msgstr "没有 id。" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "没有发布用的电子邮件地址。" @@ -1369,6 +1615,7 @@ msgstr "远程服务器没有昵称。" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "没有昵称。" @@ -1376,12 +1623,14 @@ msgstr "没有昵称。" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "没有可以取消的确认。" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "没有电话号码。" @@ -1391,7 +1640,8 @@ msgid "No profile URL returned by server." msgstr "服务器没有返回个人信息URL。" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "用户没有注册电子邮件。" @@ -1403,7 +1653,7 @@ msgstr "没有找到请求!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "没有结果" @@ -1414,12 +1664,16 @@ msgstr "没有大小。" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "没有找到此ID的信息。" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "没有找到此ID的信息。" @@ -1429,13 +1683,15 @@ msgid "No such OpenID." msgstr "没有这个 OpenID。" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "没有这份文档。" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "没有这份通告。" @@ -1473,12 +1729,22 @@ msgstr "没有这个订阅" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "没有这个用户。" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "没有拥有这个用户名或电子邮件的用户。" @@ -1492,32 +1758,38 @@ msgid "Not a recovery code." msgstr "不是恢复码。" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "不是已注册用户。" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "不支持的数据格式。" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "不是有效的 Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "不是有效的 OpenID。" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "不是有效的电子邮件" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" @@ -1525,6 +1797,11 @@ msgstr "不是有效的电子邮件。" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "不是有效的昵称。" @@ -1544,7 +1821,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "不是有效的个人信息URL(没有YADIS数据)。" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "不是图片文件或文件已损坏。" @@ -1555,11 +1833,13 @@ msgstr "未认证。" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "未预料的响应!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "未找到" @@ -1575,11 +1855,15 @@ msgstr "未找到" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "未登录。" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "未订阅!" @@ -1596,39 +1880,44 @@ msgid "Notice feed for %s" msgstr "%s 的通告聚合" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "通告没有关联个人信息" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "通告" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "带 %s 标签的通告" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "旧密码" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID 帐号设置" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 自动提交" @@ -1636,29 +1925,34 @@ msgstr "OpenID 自动提交" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID 登录" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID 认证已取消。" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID 认证失败:%s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 失败:%s" @@ -1674,11 +1968,12 @@ msgid "OpenID settings" msgstr "OpenID 设置" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "在邀请中加几句话(可选)。" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "部分上传。" @@ -1688,34 +1983,46 @@ msgstr "部分上传。" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "密码" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "密码和确认不匹配。" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "密码必须是 6 个字符或更多。" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "请求恢复密码" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "密码已保存。" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "密码不匹配。" @@ -1735,14 +2042,17 @@ msgid "People search" msgstr "搜索用户" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "个人" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "个人消息" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "电话号码,不带标点或空格,包含地区代码" @@ -1756,7 +2066,7 @@ msgstr "" "告,请点击\"取消\"。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" @@ -1765,7 +2075,9 @@ msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "首选项" @@ -1774,42 +2086,52 @@ msgstr "首选项" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "首选项已保存。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "首选语言" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "隐私" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "保存通告时出错。" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "个人信息" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "个人信息URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "个人设置" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "未知的帐号" @@ -1818,17 +2140,19 @@ msgid "Public Stream Feed" msgstr "公开的聚合" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "公开的时间表" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "公开Jabber/GTalk帐号的 MicroID。" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "公开电子邮件的 MicroID。" @@ -1838,12 +2162,14 @@ msgid "Recent Tags" msgstr "最近的标签" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "恢复" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "恢复密码" @@ -1856,37 +2182,45 @@ msgstr "恢复码未知" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "注册" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "不允许注册。" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "注册成功。" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "拒绝" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "记住登录状态" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "没有匹配的远程个人信息" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "远程订阅" @@ -1900,6 +2234,9 @@ msgstr "远程订阅" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "移除" @@ -1908,41 +2245,48 @@ msgstr "移除" msgid "Remove OpenID" msgstr "移除OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "移除唯一的OpenID可能使您无法登陆!如果需要移除它,请先添加一个新的。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "回复" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s 的回复" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "重置" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "重置密码" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS短信" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS短信电话号码" @@ -1951,17 +2295,18 @@ msgstr "SMS短信电话号码" msgid "SMS Settings" msgstr "SMS短信设置" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS短信确认" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "相同的密码" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" @@ -1974,12 +2319,21 @@ msgstr "相同的密码。此项必填。" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "保存" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "搜索" @@ -1989,7 +2343,7 @@ msgid "Search Stream Feed" msgstr "搜索聚合" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1998,7 +2352,7 @@ msgstr "" "在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用" "空格分隔。" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2008,48 +2362,56 @@ msgstr "" "含 3 个字符,多个搜索条件用空格分隔。" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "选择运营商" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "发送" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "向这个电子邮件发信以发布新的通告。" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "如果有新订阅,通过电子邮件告诉我。" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "通过Jabber/GTalk发送通告。" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "设置" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "设置已保存。" @@ -2069,27 +2431,32 @@ msgid "Something weird happened." msgstr "发生了奇怪的错误……" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "对不起,发布用的电子邮件无法使用。" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "对不起,这个发布用的电子邮件属于其他用户。" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "来源" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "统计" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "未找到已有的OpenID。" @@ -2097,24 +2464,28 @@ msgstr "未找到已有的OpenID。" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "订阅" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "订阅者" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "订阅已确认" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "订阅被拒绝" @@ -2122,28 +2493,35 @@ msgstr "订阅被拒绝" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "订阅" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "上传文件时出错。" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "标签" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "文本" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "搜索文本" @@ -2163,6 +2541,7 @@ msgid "That confirmation code is not for you!" msgstr "此确认码不适用!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "此电子邮件属于其他用户。" @@ -2172,63 +2551,73 @@ msgid "That file is too big." msgstr "文件超出大小限制。" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "您已登记此Jabber帐号。" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "您已登记此电子邮件。" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "您已登记此电话号码。" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "这不是您的Jabber帐号。" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "这是他人的电子邮件。" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "这是他人的电话号码。" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "即时通讯帐号错误。" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "确认码错误。" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "这个电话号码属于另一个用户。" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "超出长度限制。不能超过 140 个字符。" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "超出长度限制。不能超过 255 个字符。" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "地址 \"%s\" 已确认。" @@ -2237,11 +2626,14 @@ msgstr "地址 \"%s\" 已确认。" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "地址被移除。" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2249,7 +2641,8 @@ msgid "" msgstr "" "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2257,40 +2650,45 @@ msgid "" msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "这些用户订阅了 %s 的通告。" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "这些用户订阅了您的通告。" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "这是 %s 订阅的用户。" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "这是您订阅的用户。" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "这些好友已注册,您已自动订阅这些用户。" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "验证码超时,请重来。" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "此表单会自动提交。如果没有,点击“提交”以转向 OpenID 提供者。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2304,6 +2702,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "此方法接受POST或DELETE请求。" @@ -2312,47 +2713,63 @@ msgstr "此方法接受POST或DELETE请求。" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "此方法接受POST请求。" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "这个页面不提供您想要的媒体类型" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "时区" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "未选择时区。" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) " -"一个新帐号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料的互联网地址URL." +"要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) 一个新帐" +"号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料" +"的互联网地址URL." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "必须提供两个用户帐号或昵称。" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "您的主页、博客或在其他站点的URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微博客服务的个人信息URL" @@ -2364,15 +2781,22 @@ msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "未预料的表单提交。" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "未预料的密码重置。" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "未知动作" @@ -2401,38 +2825,47 @@ msgstr "退订" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "不支持此OMB版本" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "不支持这种图像格式。" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "使用SMS短信更新" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s 上 %1$s 和好友的更新!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "上传" @@ -2451,12 +2884,15 @@ msgid "Upload a new profile image" msgstr "上传个人信息头像" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "使用这个表单来邀请好友和同事加入。" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "只用于更新、通告或密码恢复" @@ -2480,11 +2916,16 @@ msgstr "要查看的用户不存在。" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "用户没有个人信息。" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "昵称" @@ -2493,29 +2934,33 @@ msgid "User not found." msgstr "未找到用户。" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "您一般处于哪个时区?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "怎么样,%s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "你的位置,格式类似\"城市,省份,国家\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "'%s' 图像格式错误" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "图像大小 '%s' 错误" @@ -2523,7 +2968,9 @@ msgstr "图像大小 '%s' 错误" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "是" @@ -2544,11 +2991,12 @@ msgid "You are already logged in!" msgstr "已登录!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "您已订阅这些用户:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "您与此用户并非好友。" @@ -2566,13 +3014,14 @@ msgstr "请创建新帐号,开始发布通告。" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "您可以点击\"移除\"按钮,移除帐号的 OpenID。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2581,7 +3030,8 @@ msgstr "" "您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" "们。" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "在这里更新个人信息,让大家对您了解得更多。" @@ -2590,21 +3040,23 @@ msgstr "在这里更新个人信息,让大家对您了解得更多。" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "您可以在这里订阅!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "您必须同意此授权方可注册。" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "您未告知此个人信息" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2625,35 +3077,39 @@ msgstr "" "为您效力的 %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "您不能删除其他用户的状态。" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "您必须登录才能邀请其他人使用 %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "您已得到确认。请输入新密码。" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "您的OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "您在此服务器的昵称,或注册邮箱。" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2662,47 +3118,57 @@ msgstr "" "[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" "关联的 OpenID。" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "几秒前" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "一天前" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "一分钟前" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "一个月前" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "一年前" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "一小时前" @@ -2724,12 +3190,14 @@ msgid "reply" msgstr "回复" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "相同的密码" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "不支持这种类型的文件" @@ -2751,6 +3219,26 @@ msgstr "« 之后" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "会话标识有问题,请重试。" @@ -2759,6 +3247,7 @@ msgid "This notice is not a favorite!" msgstr "此通告未被收藏!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "无法删除收藏。" @@ -2766,22 +3255,28 @@ msgstr "无法删除收藏。" msgid "Favor" msgstr "收藏" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "如果有人收藏我的通告,发邮件通知我。" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "如果收到私人信息,发邮件通知我。" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "已收藏此通告!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "无法创建收藏。" @@ -2791,11 +3286,13 @@ msgstr "取消收藏" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s 收藏的通告" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "%s 的收藏的聚合" @@ -2837,33 +3334,44 @@ msgid "Login with your username and password. " msgstr "输入用户名和密码以登录。" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "超出长度限制。不能超过 140 个字符。" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "没有收件人。" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "无法向此用户发送消息。" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "不要向自己发送消息;跟自己悄悄说就得了。" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "未找到用户" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "新消息" @@ -2917,6 +3425,11 @@ msgstr "您可以在这里更新个人信息。" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "找不到匹配的用户。" @@ -2945,6 +3458,8 @@ msgid "New password successfully saved. " msgstr "新密码已保存。" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "密码必须包含 6 个或更多字符。" @@ -2965,12 +3480,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "要订阅,请先[登录](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "%s 的收藏的聚合" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "无法获取收藏的通告。" @@ -2978,7 +3496,7 @@ msgstr "无法获取收藏的通告。" msgid "No such message." msgstr "未找到此消息。" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "只有发送和接受双方可以阅读此消息。" @@ -3002,51 +3520,70 @@ msgid "Mobile carrier for your phone. " msgstr "手机的运营商。" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "您已发送的直接消息" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s 发送的直接消息" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "消息没有正文!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "未找到收件人。" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "无法向并非好友的用户发送直接消息。" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s 的收藏 / %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s 收藏了 %s 的 %s 通告。" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s 收藏了您的通告" @@ -3067,14 +3604,17 @@ msgid "" msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter 设置" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter 帐号" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "已验证的 Twitter 帐号。" @@ -3083,6 +3623,7 @@ msgid "Twitter Username" msgstr "Twitter 用户名" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "请不要包含空格。" @@ -3091,24 +3632,29 @@ msgid "Twitter Password" msgstr "Twitter 密码" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "自动将我的通告转发到 Twitter。" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "将这里的 \"@\" 回复发送到 Twitter。" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "在这里订阅 Twitter 好友。" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "用户名只能包含数字,大写和小写字母和下划线。不能超过 15 个字符。" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "不能验证 Twitter 帐号!" @@ -3119,33 +3665,43 @@ msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "无法保存 Twitter 设置!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter 设置已保存。" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "此 Twitter 帐号属于他人。" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "无法移除 Twitter 用户。" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter 帐号已移除。" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "无法保存 Twitter 首选项。" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter 首选项已保存。" @@ -3162,18 +3718,19 @@ msgid "The subscription has been rejected, but no " msgstr "订阅已拒绝,但是" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "执行结果" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "执行完毕" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "执行失败" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "对不起,这个命令还没有实现。" @@ -3183,89 +3740,111 @@ msgid "Subscriptions: %1$s\n" msgstr "订阅:%1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "用户没有通告。" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "通告被标记为收藏。" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "全名:%s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "位置:%s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "主页:%s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "关于:%s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "已向 %s 发送消息" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "发送消息出错。" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "指定要订阅的用户名" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "订阅 %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "指定要取消订阅的用户名" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "取消订阅 %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "命令尚未实现。" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "通告关闭。" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "无法关闭通告。" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "通告开启。" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "无法开启通告。" @@ -3273,11 +3852,11 @@ msgstr "无法开启通告。" msgid "Commands:\n" msgstr "命令:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "无法添加信息。" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" @@ -3294,7 +3873,7 @@ msgstr "" "您的新的发布用的地址是 %1$s。\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s 发送了新的私人信息" @@ -3308,7 +3887,7 @@ msgstr "" "%1$s (%2$s) 发送了新的私人信息:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "只有用户自己可以访问邮箱。" @@ -3317,31 +3896,39 @@ msgid "This form should automatically submit itself. " msgstr "此表单会自动提交。" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "收藏夹" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s 收藏的通告" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "收件箱" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "您接收的消息" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "发件箱" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "您发送的消息" @@ -3354,14 +3941,19 @@ msgid "Twitter integration options" msgstr "Twitter 整合选项" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "到" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "无法解析消息。" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s 及好友" @@ -3371,21 +3963,31 @@ msgid "You can upload your personal avatar." msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "头像设置" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "原来的" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "剪裁" @@ -3403,37 +4005,46 @@ msgid "There was a problem with your session token. " msgstr "会话标识有问题,请重试。" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "请选择一块方形区域作为你的头像" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "文件数据丢失" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "没有这份通告。" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "未知文件类型" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 #, fuzzy msgid "No profile specified." msgstr "没有收件人。" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "没有找到此ID的信息。" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "阻止用户" @@ -3443,11 +4054,11 @@ msgstr "阻止用户" msgid "Are you sure you want to block this user? " msgstr "确定要阻止该用户吗?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "您已成功阻止该用户:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "保存阻止信息失败。" @@ -3465,41 +4076,59 @@ msgstr "您将要永久删除这条通告。" msgid "Add to favorites" msgstr "加入收藏" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "编辑 %s 组" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 #, fuzzy msgid "Inboxes must be enabled for groups to work" msgstr "使用组功能前必须使能邮箱" # before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "您必须登录才能创建小组。" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "没有昵称。" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "没有这个组" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "只有admin才能编辑这个组" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "使用这个表单来编辑组" @@ -3509,14 +4138,15 @@ msgid "Nickname must have only lowercase letters " msgstr "昵称只能使用小写字母" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "描述过长(不能超过140字符)。" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "无法更新组" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "选项已保存。" @@ -3535,7 +4165,8 @@ msgstr "新的电子邮件地址,用于发布 %s 信息" msgid "Send me email when someone " msgstr "如果收到私人信息,发邮件通知我。" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "允许朋友们呼叫并给我发送邮件。" @@ -3549,7 +4180,7 @@ msgstr "此电子邮件属于其他用户。" msgid "A confirmation code was sent to the email address you added. " msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "服务器报错 -- 无法找到该用户。" @@ -3563,55 +4194,70 @@ msgstr "如果你想使用 %s 程序自动更新" msgid "Allow %s to update my Facebook status" msgstr "允许 %s 更新我Facebook 的状态" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "跳过" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "没有内容!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "分页" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« 之后" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "之前 »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "感谢您邀请朋友使用 %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "已发送邀请给这些人:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "您已被邀请到 %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s 好友的聚合" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "已经正在使用 %s 的朋友:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "发出邀请" @@ -3658,13 +4304,15 @@ msgstr "如果你希望 %s 自动更新。" msgid "Sync preferences" msgstr "同步设置" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "取消收藏" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "没有这份通告。" @@ -3680,7 +4328,8 @@ msgid "The most popular notices on the site right now." msgstr "显示上周以来最流行的标签" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "推荐用户" @@ -3694,15 +4343,17 @@ msgstr "推荐用户,第 %d 页" msgid "A selection of some of the great users on %s" msgstr "%s 优秀用户摘选" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "那个用户阻止了你的订阅。" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "没有ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "组logo" @@ -3710,11 +4361,13 @@ msgstr "组logo" msgid "You can upload a logo image for your group." msgstr "你可以给你的组上载一个logo图。" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "logo已更新。" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "更新logo失败。" @@ -3734,7 +4387,8 @@ msgid "A list of the users in this group." msgstr "该组成员列表。" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "组" @@ -3744,12 +4398,12 @@ msgid "Groups, page %d" msgstr "组,第 %d 页" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% 组你可以查找并联络" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "创建新组" @@ -3760,7 +4414,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "组检索" @@ -3784,21 +4438,21 @@ msgstr "通过Jabber/GTalk发送通告。" msgid "A confirmation code was sent " msgstr "确认消息已经发送" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "您必须登录才能加入组。" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "您已经是该组成员" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "无法把 %s 用户添加到 %s 组" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s 加入 %s 组" @@ -3807,16 +4461,19 @@ msgstr "%s 加入 %s 组" msgid "Inboxes must be enabled for groups to work." msgstr "邮箱必须使能组才能工作。" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "没有这个组。" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "您未告知此个人信息" @@ -3826,22 +4483,26 @@ msgstr "您未告知此个人信息" msgid "You may not leave a group while you are its administrator." msgstr "您不能删除其他用户的状态。" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "无法更新用户记录。" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "无法订阅用户:未找到。" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s 离开群 %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "登录" @@ -3853,15 +4514,17 @@ msgstr "没有当前状态" msgid "New group" msgstr "新组" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "使用此表格创建组。" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "无法创建组。" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "无法删除订阅。" @@ -3876,11 +4539,14 @@ msgstr "文件超出大小限制。" msgid "Don't send a message to yourself; " msgstr "无法向此用户发送消息。" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "消息已发布。" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax错误" @@ -3897,7 +4563,7 @@ msgstr "振铃呼叫发出。" msgid "Nudge sent!" msgstr "振铃呼叫已经发出!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID 登录" @@ -3924,11 +4590,13 @@ msgstr "URL自动缩短" msgid "Service" msgstr "服务" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "要使用的自动缩短服务。" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "URL缩短服务超长(最多50个字符)。" @@ -3938,17 +4606,18 @@ msgstr "URL缩短服务超长(最多50个字符)。" msgid "Change your password." msgstr "修改密码" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "密码已保存。" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "不是有效的电子邮件" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "用户自加标签 %s - 第 %d 页" @@ -3958,12 +4627,13 @@ msgstr "用户自加标签 %s - 第 %d 页" msgid "These are users who have tagged themselves \"%s\" " msgstr "这些是自我标识为 \"%s\" 的用户" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "未知的帐号" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" @@ -3974,21 +4644,26 @@ msgid "Automatically subscribe to whoever " msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "主页'%s'不正确" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "无法保存个人信息。" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "公开的时间表" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "无法获取收藏的通告。" @@ -3999,8 +4674,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) 服务" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" #: actions/publictagcloud.php:57 #, fuzzy @@ -4012,11 +4687,13 @@ msgstr "公开的聚合" msgid "These are most popular recent tags on %s " msgstr "这些是最近的 %s 流行标签 " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "标签云聚集" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "对不起,请邀请那些能注册的人。" @@ -4073,7 +4750,8 @@ msgstr "(您将立即收到一封电子邮件,含有" msgid "That's a local profile! Login to subscribe." msgstr "那是一个本地资料!需要登录才能订阅。" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s 的回复,第 % 页" @@ -4083,53 +4761,74 @@ msgstr "%s 的回复,第 % 页" msgid "%s favorite notices, page %d" msgstr "%s 收藏的通告" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 组" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s 组, 第 %d 页" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "组资料" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL 互联网地址" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "通告" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "组动作" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s 的通告聚合" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "注册于" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "所有成员" @@ -4139,15 +4838,15 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "只有发送和接受双方可以阅读此消息。" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "%s 的收件箱 - 第 %d 页" @@ -4158,35 +4857,42 @@ msgid "'s profile" msgstr "个人信息" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "用户没有个人信息。" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "相片" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "未知动作" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "无法向此用户发送消息。" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "新消息" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "订阅者" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "所有组" @@ -4196,8 +4902,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/smssettings.php:128 #, fuzzy @@ -4214,7 +4920,7 @@ msgstr "通过Jabber/GTalk发送通告。" msgid "A confirmation code was sent to the phone number you added. " msgstr "等待确认此电话号码。" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "选择运营商" @@ -4279,17 +4985,18 @@ msgstr "这是 %s 订阅的用户。" msgid "These are the people whose " msgstr "这些用户订阅了 %s 的通告。" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "没有 Jabber ID。" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "带 %s 标签的通告" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "有 \"%s\" 标签的消息,最近的排序在前" @@ -4314,28 +5021,29 @@ msgstr "标签" msgid "Tag user" msgstr "标签" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" -msgstr "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +msgstr "" +"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" #: actions/tagother.php:164 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "你只能给你订阅的人或订阅你的人加标签。" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "无法保存头像" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "使用这个表格给你的关注者或你的订阅加注标签。" @@ -4344,20 +5052,23 @@ msgstr "使用这个表格给你的关注者或你的订阅加注标签。" msgid "No such tag." msgstr "未找到此消息。" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "带 %s 标签的通告" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "阻止用户失败。" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "取消阻止用户失败。" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "未找到" @@ -4367,17 +5078,18 @@ msgstr "未找到" msgid "Add your Twitter account to automatically send " msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Twitter 用户名" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Twitter 密码" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Twitter 设置" @@ -4391,156 +5103,165 @@ msgstr "用户名只能有数字," msgid "Unable to retrieve account information " msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "保存用户时出错。" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "服务器没有返回个人信息URL。" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "没有找到此ID的信息。" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "退订" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s 群组" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s 群组, 第 %d 页" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "上载一个头像。" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "其他" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "其他选项" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "无标题页" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "主站导航" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "帐号" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "与IM,手机短信,Twitter的连接" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "没有这个 OpenID。" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "帮助" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "本地显示" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "全部" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "注册证" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "阻止该用户" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "阻止" @@ -4554,12 +5275,15 @@ msgstr "%s 收藏的通告" msgid "To use the %s Facebook Application you need to login " msgstr "你需要登录方能使用%sFacebook程序" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "一个新帐号" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "已发布" @@ -4581,35 +5305,40 @@ msgstr "%s 标签的聚合" msgid "All" msgstr "全部" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "标签" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "选择标签缩小清单" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "执行" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "您的主页、博客或在其他站点的URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "描述" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "用不超过140个字符描述您自己和您的爱好" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4619,21 +5348,21 @@ msgstr "你的位置,格式类似\"城市,省份,国家\"" msgid "Group" msgstr "组" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "admin管理员" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "编辑 %s群选项" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo图标" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "添加或编辑 %s 图标" @@ -4666,12 +5395,12 @@ msgstr "加入" msgid "Leave" msgstr "保存" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "输入用户名和密码以登录。" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "创建新帐号" @@ -4694,17 +5423,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s 开始关注您的 %2$s 信息。" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "位置:%s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "主页:%s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4713,7 +5442,7 @@ msgstr "" "自传Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s 振铃呼叫你" @@ -4728,47 +5457,55 @@ msgstr "%1$s (%2$s) 发送了新的私人信息:" msgid "%1$s just added your notice from %2$s" msgstr "%1$s 收藏了您的 %2$s 通告" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "从 " -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "删除通告" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "发送消息" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 个或更多字符" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "先前……" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "删除通告" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "删除" @@ -4791,28 +5528,30 @@ msgstr "呼叫这个用户" msgid "Tags in %s's notices" msgstr "%s's 的消息的标签" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(none 没有)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "公告" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "用户组" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "最近的标签" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "特征" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "用户" @@ -4831,32 +5570,34 @@ msgstr "搜索用户信息" msgid "Untitled section" msgstr "无标题章节" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "%s 订阅的人" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "订阅 %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s 组是成员组成了" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "用户没有个人信息。" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "订阅 %s" @@ -4872,11 +5613,12 @@ msgid "Top posters" msgstr "灌水精英" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "取消阻止次用户" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "取消阻止" @@ -4885,6 +5627,2044 @@ msgstr "取消阻止" msgid "Unsubscribe from this user" msgstr "取消订阅 %s" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s 好友的聚合" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s 好友的聚合" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s 好友的聚合" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s 及好友" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "您可以在这里上传个人头像。" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "头像已更新。" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "您选择了永久删除通告。这样做是无法恢复的。" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "会话标识有问题,请重试。" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "如果收到私人信息,发邮件通知我。" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "你可以给你的组上载一个logo图。" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "请选择一块方形区域作为你的头像" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s 的微博客服务" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" +"含 3 个字符,多个搜索条件用空格分隔。" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "发送消息出错。" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜索有关\"%s\"的消息" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "由于安全原因,修改设置前需要输入用户名和密码。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "公开的聚合" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "公开的聚合" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "公开的聚合" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "创建" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "组资料" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "个人信息" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s 的发件箱" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "头像" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "个人设置" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" +"使用它。" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "未找到用户" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" +"告,请点击\"取消\"。" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "检索人或文字" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "与IM,手机短信,Twitter的连接" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "呼叫" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "你需要登录方能使用%sFacebook程序" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s 开始关注您的 %2$s 信息。\n" +"\n" +"\t%3$s\n" +"\n" +"为您效力的 %4$s\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "搜索" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "没有这份文档。" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "该组成员列表。" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "该组成员列表。" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "用户没有个人信息。" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 及好友" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "该组成员列表。" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "取消阻止用户失败。" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "确认码" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "无法删除通告。" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "主页'%s'不正确" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "无法创建收藏。" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新通告" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新通告" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "不是有效的昵称。" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "没有收件人。" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "用户没有个人信息。" + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "您未告知此个人信息" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "阻止用户" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +# before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "您必须登录才能创建小组。" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "组" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "无法更新用户。" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "无法保存 Twitter 设置!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "同步选项已保存。" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "只有admin才能编辑这个组" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "admin管理员" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "没有结果" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "用户没有个人信息。" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "新消息" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "无法保存个人信息。" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" +"关联的 OpenID。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "个人设置" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "您已得到确认。请输入新密码。" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "请求恢复密码" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "验证码出错。" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "订阅 %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 收藏的通告" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "admin管理员" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "没有这个用户。" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "带 %s 标签的通告" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s 开始关注您的 %2$s 信息。" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "已收藏此通告!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "此通告未被收藏!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "无法获取收藏的通告。" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "没有收件人。" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "找不到任何信息。" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / 回复 %2$s 的消息" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "注册证" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "所有订阅" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "个人设置" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "您未告知此个人信息" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "保存通告时出错。" + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "用户没有个人信息。" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "个人信息" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "上传" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "修改密码" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "连接" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "搜索" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登录" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "阻止" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "阻止用户" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "添加或编辑 %s 图标" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "没有内容!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "用户" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "搜索" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "主页的URL不正确。" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "未找到此消息。" + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "发给 %s 的直接消息" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "无法订阅用户:未找到。" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "您已经是该组成员" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "无法把 %s 用户添加到 %s 组" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "您未告知此个人信息" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "无法订阅用户:未找到。" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 群组" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 组是成员组成了" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "组动作" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "不支持这种图像格式。" + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "相片" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "要查看的用户不存在。" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "未认证。" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "无法将请求标记转换为访问令牌。" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "此OMB协议版本无效。" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "没有这份通告。" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "没有这份通告。" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "这个页面不提供您想要的媒体类型" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有匹配搜索条件\"%s\"的消息" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自述过长(不能超过140字符)。" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "不是有效的个人信息URL(没有YADIS数据)。" + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "那是一个本地资料!需要登录才能订阅。" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "无法获得一份请求标记。" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s 组" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "消息已发布。" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "这个页面不提供您想要的媒体类型" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" +"告,请点击\"取消\"。" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "无法访问头像URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' 图像格式错误" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "无法重定向到服务器:%s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet软件注册证" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "无法更新已确认的电子邮件。" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "振铃呼叫发出。" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "无法删除通告。" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "保存通告时出错。" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "没有验证码" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "登入本站" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "选择运营商" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s 的通告聚合" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s 收藏了您的通告" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " 从 " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "无法删除收藏。" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "删除通告" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "命令尚未实现。" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index 9bdfbaf9f7ec586e2945341f71979db6089f294b..251d832662b63cde98c26ea2a73b59e63cf10ec0 100644 GIT binary patch literal 24937 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 delta 5715 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\n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "搜尋 \"%s\"相關資料" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" @@ -35,17 +35,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -77,6 +79,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "現在%1$s在%2$s成為你的粉絲囉" @@ -100,25 +103,28 @@ msgstr "" "敬上。\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s的狀態是%2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s的公開內容" @@ -128,40 +134,55 @@ msgstr "%s的公開內容" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s與好友" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -170,7 +191,8 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" @@ -182,30 +204,34 @@ msgstr "必須注明作者姓名或昵稱." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6個以上字元" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6個或6個以上字元,別忘了自己密碼喔" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -213,6 +239,7 @@ msgid "" msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -242,7 +269,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -265,16 +319,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "關於" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "接受" @@ -285,6 +346,9 @@ msgstr "接受" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "新增" @@ -302,27 +366,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "信箱" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "所有訂閱" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s的所有新增內容" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "所有符合 \"%s\"的更新" @@ -332,30 +398,37 @@ msgstr "所有符合 \"%s\"的更新" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "已登入" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "此帳號已註冊" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "註冊確認" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "未來在同一部電腦自動登入" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -363,15 +436,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "個人圖像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "更新個人圖像" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -381,13 +458,14 @@ msgstr "" "好友清單了嗎?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -399,6 +477,8 @@ msgstr "之前的內容»" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "自我介紹" @@ -406,16 +486,18 @@ msgstr "自我介紹" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "自我介紹過長(共140個字元)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "無法讀取此%sURL的圖像" @@ -423,6 +505,8 @@ msgstr "無法讀取此%sURL的圖像" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "無法存取新密碼" @@ -430,31 +514,34 @@ msgstr "無法存取新密碼" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "無法初始化OpenID用戶對象(consumer object)" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "此JabberID錯誤" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "更改" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -464,11 +551,12 @@ msgid "Change password" msgstr "更改密碼" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -478,6 +566,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "確認" @@ -490,12 +581,14 @@ msgstr "確認信箱" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "確認取消" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -504,7 +597,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "確認碼遺失" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -524,20 +618,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "連結" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "與現有帳號連結" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "好友名單" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "無法從 %s 建立OpenID" @@ -545,35 +643,39 @@ msgstr "無法從 %s 建立OpenID" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "無法連結到伺服器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "無法存取個人圖像資料" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "無法存取新的個人資料" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -593,15 +695,17 @@ msgstr "無法轉換請求標記以致無法存取標記" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "無法刪除帳號" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -614,29 +718,38 @@ msgstr "無法取得轉換標記" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "無法輸入確認碼" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "無法儲存個人資料" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -652,42 +765,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "無法更新使用者" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "新增" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "以此暱稱新增使用者" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "新增帳號" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "該OpenID已經注冊" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "目前已確認的Jabber/Gtalk地址" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -696,23 +815,27 @@ msgid "Currently" msgstr "目前" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "增加回覆時,資料庫發生錯誤: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "請在140個字以內描述你自己與你的興趣" @@ -720,11 +843,13 @@ msgstr "請在140個字以內描述你自己與你的興趣" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "電子信箱" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -734,39 +859,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "此電子信箱已註冊過了" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "確認信箱" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "請輸入暱稱或電子信箱" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "授權錯誤(Error authorizing token)" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "連接OpenID時發生錯誤" @@ -777,39 +906,46 @@ msgstr "連接用戶時發生錯誤(Error connecting user.)" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "個人圖像插入錯誤" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "新的更人資料輸入錯誤" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "儲存信箱確認發生錯誤" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "儲存遠端個人資料發生錯誤" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "儲存個人資料發生錯誤" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "儲存使用者發生錯誤" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "儲存使用者發生錯誤;使用者名稱無效" @@ -818,6 +954,9 @@ msgstr "儲存使用者發生錯誤;使用者名稱無效" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "使用者設定發生錯誤" @@ -828,6 +967,7 @@ msgstr "更新個人資料發生錯誤" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "更新遠端個人資料發生錯誤" @@ -837,33 +977,36 @@ msgid "Error with confirmation code." msgstr "確認碼發生錯誤" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "這個暱稱已有人用了喔" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "常見問題" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "無法上傳個人圖像" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "發送給%s好友的訂閱" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "回應給%s的訂閱" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -878,7 +1021,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -889,6 +1032,11 @@ msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更 #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "全名" @@ -897,23 +1045,33 @@ msgstr "全名" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "全名過長(最多255字元)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "求救" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "主頁" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "個人首頁" @@ -921,21 +1079,27 @@ msgstr "個人首頁" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "個人首頁位址錯誤" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "線上即時通信箱" @@ -945,19 +1109,19 @@ msgid "IM Settings" msgstr "線上即時通設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -966,55 +1130,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "舊密碼錯誤" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "使用者名稱或密碼錯誤" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "個人圖像連結%s無效" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "個人首頁連結%s無效" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1029,13 +1200,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "個人資料連結%s無效" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "個人資料連結無效(格式錯誤)" @@ -1053,28 +1224,35 @@ msgstr "尺寸錯誤" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "使用者名稱或密碼無效" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1083,11 +1261,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "此Jabber ID已有人使用" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1095,12 +1274,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1109,7 +1290,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "地點" @@ -1118,7 +1307,12 @@ msgstr "地點" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "地點過長(共255個字)" @@ -1127,18 +1321,22 @@ msgstr "地點過長(共255個字)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "登入" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "用OpenID(%%doc.openid%%)帳號登入" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1146,22 +1344,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "登出" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "遺失或忘記密碼了嗎?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1172,16 +1374,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "何時加入會員的呢?" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "&s的微型部落格" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1191,42 +1395,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新暱稱" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新訊息" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新密碼" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新密碼已儲存成功。你已登入。" @@ -1236,7 +1448,13 @@ msgstr "新密碼已儲存成功。你已登入。" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "暱稱" @@ -1245,7 +1463,12 @@ msgstr "暱稱" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" @@ -1254,47 +1477,58 @@ msgstr "此暱稱已有人使用。再試試看別的吧。" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "暱稱請用小寫字母或數字,勿加空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "此暱稱無法使用" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "暱稱或信箱" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "查無此Jabber ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "無確認請求" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1306,11 +1540,15 @@ msgstr "無確認碼" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "無內容" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1319,7 +1557,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1330,6 +1570,7 @@ msgstr "無遠端伺服器提供的暱稱" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "無暱稱" @@ -1337,12 +1578,14 @@ msgstr "無暱稱" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1352,7 +1595,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "查無此使用者所註冊的信箱" @@ -1364,7 +1608,7 @@ msgstr "目前無請求" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "無結果" @@ -1375,12 +1619,16 @@ msgstr "無尺寸" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1390,13 +1638,15 @@ msgid "No such OpenID." msgstr "無此OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "無此文件" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "無此通知" @@ -1434,12 +1684,22 @@ msgstr "無此訂閱" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "無此使用者" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1453,32 +1713,38 @@ msgid "Not a recovery code." msgstr "此恢復碼錯誤" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "此JabberID無效" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "此OpenID無效" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "此信箱無效" @@ -1486,6 +1752,11 @@ msgstr "此信箱無效" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1505,7 +1776,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1516,11 +1788,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1536,11 +1810,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1557,39 +1835,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1597,29 +1880,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1635,11 +1923,12 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1649,34 +1938,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1696,14 +1997,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1715,7 +2019,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1724,7 +2028,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1733,42 +2039,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1777,17 +2093,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1797,12 +2115,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1815,37 +2135,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1859,6 +2187,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1867,41 +2198,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1910,17 +2248,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1933,12 +2272,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -1948,14 +2296,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1963,48 +2311,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2024,27 +2380,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2052,24 +2413,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2077,28 +2442,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2118,6 +2490,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2127,63 +2500,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2192,18 +2575,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2211,40 +2598,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2256,6 +2648,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2264,25 +2659,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2291,18 +2698,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2314,15 +2724,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2351,38 +2768,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2399,12 +2825,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2428,11 +2857,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2441,29 +2875,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2471,7 +2909,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2492,11 +2932,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2514,20 +2955,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2536,21 +2979,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2564,82 +3009,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2661,12 +3120,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2687,6 +3148,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2695,6 +3176,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2702,22 +3184,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2727,11 +3215,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2771,33 +3261,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2851,6 +3352,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2879,6 +3385,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2899,12 +3407,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2912,7 +3423,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2936,51 +3447,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -2999,14 +3529,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3015,6 +3548,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3023,24 +3557,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3051,33 +3590,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3094,18 +3643,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3115,89 +3665,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3205,11 +3777,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3224,7 +3796,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3236,7 +3808,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3245,31 +3817,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3282,14 +3862,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s與好友" @@ -3299,22 +3884,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "線上即時通設定" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3331,35 +3926,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "無此通知" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "無此使用者" @@ -3368,11 +3972,11 @@ msgstr "無此使用者" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3389,40 +3993,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "無暱稱" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "無此通知" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3432,16 +4054,17 @@ msgid "Nickname must have only lowercase letters " msgstr "暱稱請用小寫字母或數字,勿加空格。" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3458,7 +4081,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3472,7 +4096,7 @@ msgstr "此電子信箱已註冊過了" msgid "A confirmation code was sent to the email address you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3486,53 +4110,68 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "無內容" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "發送給%s好友的訂閱" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3575,12 +4214,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "無此通知" @@ -3595,7 +4236,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3609,15 +4251,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3625,12 +4269,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "更新個人圖像" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "無法上傳個人圖像" @@ -3650,7 +4296,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3665,6 +4312,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "新增帳號" @@ -3675,7 +4323,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3697,20 +4345,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "無確認碼" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "無法連結到伺服器:%s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3719,16 +4367,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "無此通知" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3736,21 +4387,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "無法從 %s 建立OpenID" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3762,16 +4417,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "無法存取個人圖像資料" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" @@ -3784,11 +4441,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3805,7 +4465,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "" @@ -3830,11 +4490,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "地點過長(共255個字)" @@ -3844,16 +4506,17 @@ msgstr "地點過長(共255個字)" msgid "Change your password." msgstr "更改密碼" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "此信箱無效" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3863,11 +4526,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3877,21 +4541,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "個人首頁連結%s無效" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "無法儲存個人資料" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3911,11 +4580,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -3967,7 +4638,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -3977,52 +4649,73 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "無此通知" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "何時加入會員的呢?" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4037,7 +4730,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4048,32 +4741,39 @@ msgid "'s profile" msgstr "無此通知" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "無此通知" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4098,7 +4798,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4159,17 +4859,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "查無此Jabber ID" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "&s的微型部落格" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4193,7 +4894,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4203,17 +4904,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "無法存取個人圖像資料" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4222,20 +4923,23 @@ msgstr "" msgid "No such tag." msgstr "無此通知" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "&s的微型部落格" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "目前無請求" @@ -4244,16 +4948,17 @@ msgstr "目前無請求" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "新密碼" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4266,155 +4971,164 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "無法取消信箱確認" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "儲存使用者發生錯誤" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "無確認請求" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "此帳號已註冊" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "無法上傳個人圖像" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "關於" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "無此OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "求救" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "無此使用者" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4427,12 +5141,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "新增帳號" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4453,33 +5170,38 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "所有訂閱" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "請在140個字以內描述你自己與你的興趣" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4488,21 +5210,21 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "登出" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4534,12 +5256,12 @@ msgstr "登入" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "使用者名稱或密碼無效" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "新增帳號" @@ -4560,24 +5282,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4592,41 +5314,49 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "新訊息" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6個以上字元" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4647,27 +5377,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4684,31 +5416,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "無此訂閱" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "此帳號已註冊" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -4721,11 +5455,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "無此使用者" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4733,6 +5468,1969 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s與好友" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "更新個人圖像" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "&s的微型部落格" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜尋 \"%s\"相關資料" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "%s的公開內容" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "新增" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "無此通知" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "無此通知" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "個人圖像" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "線上即時通設定" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "無此使用者" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "無法取消信箱確認" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"現在%1$s在%2$s成為你的粉絲囉。\n" +"\n" +"\t%3$s\n" +"\n" +"\n" +"%4$s.\n" +"敬上。\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "無此文件" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "無法連結到伺服器:%s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "無此使用者" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "無此通知" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s與好友" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "無此使用者" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "地點" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "無此通知" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "個人首頁連結%s無效" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "此暱稱已有人使用。再試試看別的吧。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "無法存取個人圖像資料" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新訊息" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新訊息" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "此信箱無效" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "無此使用者" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "無法更新使用者" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "無結果" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "無法儲存個人資料" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "確認碼發生錯誤" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "無此通知" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "無此使用者" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "現在%1$s在%2$s成為你的粉絲囉" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "無法更新使用者" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "無法更新使用者" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s的狀態是%2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "&s的微型部落格" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "所有訂閱" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "儲存使用者發生錯誤" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "無此通知" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "無此通知" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "更改密碼" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "連結" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登入" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "無此使用者" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "無此使用者" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "無內容" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "個人首頁位址錯誤" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "無此通知" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "無法連結到伺服器:%s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "無法連結到伺服器:%s" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "無法從 %s 建立OpenID" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "無法轉換請求標記以致無法存取標記" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "無此通知" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "無此通知" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "個人首頁位址錯誤" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有符合 \"%s\"的更新" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "無法取得轉換標記" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "無此通知" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "個人首頁位址錯誤" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "無法讀取此%sURL的圖像" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "無法連結到伺服器:%s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "新訊息" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "無法連結到伺服器:%s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "新增訊息時發生錯誤" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "無確認碼" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "現在%1$s在%2$s成為你的粉絲囉" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "新訊息" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "新增帳號" @@ -4742,11 +7440,3 @@ msgstr "" #~ msgid "Email address" #~ msgstr "電子信箱" - -#~ msgid "Error inserting notice" -#~ msgstr "新增訊息時發生錯誤" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" From 12eec0fea24ab71a4a374d06bdd8ce8fe0ebef98 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 11:56:44 -0800 Subject: [PATCH 14/15] Update Russian localization from apaskal's branch Updated from version in merge request 1762 - http://www.gitorious.org/statusnet/mainline/merge_requests/1762 --- locale/ru/LC_MESSAGES/statusnet.mo | Bin 132937 -> 135490 bytes locale/ru/LC_MESSAGES/statusnet.po | 227 ++++++++++++++++++++--------- 2 files changed, 158 insertions(+), 69 deletions(-) diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 251292eae7b9f7459096f72739c52315e3c9a672..8bb08b88595777b9b0387ef43d929af6a6e62a9d 100644 GIT binary patch delta 26675 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 Y>AuPq`}0IMOKj?iZeZ;9L4L#k7qzCR-2eap diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 4fcd680001..5aa1298bcf 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -6,12 +6,12 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-04-01 16:09+0000\n" -"Last-Translator: motherfuker \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2009-10-12 12:17+0300\n" +"Last-Translator: Andrey Paskal \n" +"Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -4385,9 +4385,7 @@ msgstr "Особые пользователи, страница %d" #: actions/featured.php:99 #, php-format msgid "A selection of some of the great users on %s" -msgstr "" -"Список наиболее активных, знаменитых и уважаемых пользователей на %%%%site." -"name%%%%" +msgstr "Список наиболее активных, знаменитых и уважаемых пользователей на %s" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." @@ -4476,10 +4474,7 @@ msgstr "" #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " -msgstr "" -"Jabber или GTalk - адрес, типа \\\"UserName@example.org\\\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" -"мессенджере или в GTalk." +msgstr "Jabber или GTalk - адрес, " #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " @@ -4488,9 +4483,7 @@ msgstr "Посылать мне записи через Jabber/GTalk." #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " -msgstr "" -"Код подтверждения выслан на ваш IM-адрес, который вы добавили. Вы должны " -"подтвердить %s для рассылки сообщений вам." +msgstr "Код подтверждения выслан " #: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." @@ -4714,8 +4707,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг)" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4744,10 +4737,7 @@ msgstr "" #: actions/register.php:286 msgid "With this form you can create " -msgstr "" -"При помощи этой формы вы можете создать новый %%site.name%% аккаунт. (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" +msgstr "При помощи этой формы вы можете создать " #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " @@ -4781,21 +4771,7 @@ msgstr "" #: actions/register.php:471 #, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " -"можете ...\n" -"\n" -"* Перейти на [ваш микроблог](%s) и запостить вашу первую запись.\n" -"* Добавить ваш [Jabber/GTalk - аккаунт](%%%%action.imsettings%%%%) так что " -"вы сможете после этого отправлять записи через мессенджеры.\n" -"* [Искать людей](%%%%action.peoplesearch%%%%), которых вы возможно знаете " -"или с которыми разделяете одни и те же интересы.\n" -"* Обновить ваши [профильные настройки](%%%%action.profilesettings%%%%) чтобы " -"больше рассказать другим о себе.\n" -"* Прочитать [документацию](%%%%doc.help%%%%) чтобы поподробнее узнать об " -"особенностях данного вэб сервиса и о том как его использовать.\n" -"Спасибо за то, что присоединились к нам и надеемся, что вы получите " -"удовольствие от использования данного сервиса!" +msgstr "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. " #: actions/register.php:495 msgid "(You should receive a message by email " @@ -4892,8 +4868,8 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"**%s** - это группа пользователей на сайте %%%%site.name%%%%, для " +"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4949,10 +4925,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." -"register%%%%) и получи возможность быть всегда в курсе всего самого " -"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" +"**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5005,7 +4979,7 @@ msgstr "Это пользователи, которые читают запис #: actions/subscribers.php:67 #, php-format msgid "These are the people who " -msgstr "Это пользователи, которые читают записи %s." +msgstr "Это пользователи, которые " #: actions/subscriptions.php:52 #, php-format @@ -5024,7 +4998,7 @@ msgstr "Это пользователи, записи которых читае #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose " -msgstr "Это пользователи, которые читают записи %s." +msgstr "Это пользователи, которые " #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 @@ -5138,7 +5112,7 @@ msgstr "" #: actions/twittersettings.php:341 #, php-format msgid "Unable to retrieve account information " -msgstr "Не удаётся подтвердить данные по аккаунту от \"%s\" из Твитера." +msgstr "Не удаётся подтвердить данные по аккаунту " #: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." @@ -5432,7 +5406,7 @@ msgstr "" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to " -msgstr "%1$s теперь просматривает твои записи на %2$s." +msgstr "%1$s теперь просматривает твои записи " #: lib/mail.php:254 lib/mail.php:253 #, php-format @@ -5588,7 +5562,7 @@ msgstr "Группы, в которых состоит %s" #: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." +msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." @@ -5774,6 +5748,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." +"register%%), чтобы держать в курсе своих событий поклонников, друзей, " +"родственников и коллег! ([Читать далее](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format @@ -5782,6 +5761,10 @@ msgid "" "link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " "Try our [OpenID registration](%%action.openidlogin%%)!)" msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" @@ -5812,6 +5795,12 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " +"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " +"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" #: actions/showstream.php:147 #, fuzzy @@ -5869,6 +5858,12 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " +"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " +"([Читать далее](%%%%doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy @@ -6564,14 +6559,15 @@ msgid "" msgstr "" #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format +#, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/)." #: actions/publictagcloud.php:69 #, php-format @@ -6690,15 +6686,17 @@ msgid "Notice feed for %s group (Atom)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format +#, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6739,16 +6737,16 @@ msgid "" msgstr "" #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." -"register%%%%) и получи возможность быть всегда в курсе всего самого " -"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/)." #: actions/subscribers.php:108 msgid "" @@ -7209,8 +7207,9 @@ msgid "groups on %s" msgstr "Действия группы" #: actions/apistatusesshow.php:138 +#, fuzzy msgid "Status deleted." -msgstr "" +msgstr "Аватар обновлён." #: actions/apistatusesupdate.php:132 msgid "Unable to handle that much POST data!" @@ -7336,10 +7335,13 @@ msgid "Bio is too long (max %d chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: actions/register.php:336 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами." #: actions/remotesubscribe.php:168 #, fuzzy @@ -7358,19 +7360,19 @@ msgid "Couldn’t get a request token." msgstr "Не удаётся получить запрос." #: actions/replies.php:144 -#, php-format +#, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "" +msgstr "Лента записей для %s" #: actions/replies.php:151 -#, php-format +#, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" -msgstr "" +msgstr "Лента записей для %s" #: actions/replies.php:158 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Лента записей от группы %s" +msgstr "Лента записей для %s" #: actions/repliesrss.php:72 #, fuzzy, php-format @@ -7380,17 +7382,17 @@ msgstr "Сообщение для %1$s на %2$s" #: actions/showfavorites.php:170 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:177 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:184 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:211 #, php-format @@ -7403,7 +7405,7 @@ msgstr "" #: actions/showgroup.php:345 #, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Группа %s" +msgstr "Исходящие для %s" #: actions/shownotice.php:90 #, fuzzy @@ -7610,7 +7612,7 @@ msgstr "Опиши группу при помощи 140 символов" #: lib/jabber.php:192 #, fuzzy, php-format msgid "notice id: %s" -msgstr "Лента записей для %s" +msgstr "Новая запись" #: lib/mail.php:554 #, fuzzy, php-format @@ -7670,13 +7672,100 @@ msgstr "" #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Не удаётся удалить любимую запись." +msgstr "Не удаётся вернуть публичный поток." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Удалить запись" +#, fuzzy +#~ msgid "OpenID is not available." +#~ msgstr "Страница недоступна для того типа, который Вы задействовали." + +#~ msgid "" +#~ "This is %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/" +#~ "wiki/Micro-blogging) service based on the Free Software [StatusNet]" +#~ "(http://status.net/) tool. [Join now](%%%%action.%s%%%%) to share notices " +#~ "about yourself with friends, family, and colleagues! ([Read more](%%%%doc." +#~ "help%%%%))" +#~ msgstr "" +#~ "Это %%%%site.name%%%% - сайт для [микроблогинга](http://ru.wikipedia.org/" +#~ "wiki/Микроблоггинг) созданный с использованием свободного программного " +#~ "обеспечения [StatusNet](http://status.net/). [Стань участником](%%%%" +#~ "action.%s%%%%), чтобы держать в курсе своих событий поклонников, " +#~ "друзей, родственников и коллег ! ([Читать далее](%%%%doc.help%%%%))" + +#, fuzzy +#~ msgid "" +#~ "To subscribe, you can [login](%%%%action.%s%%%%), or [register](%%%%" +#~ "action.%s%%%%) a new account. If you already have an account on a " +#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " +#~ "URL below." +#~ msgstr "" +#~ "Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " +#~ "[зарегистрировать](%%action.register%%) новый аккаунт." + +#~ msgid "" +#~ "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +#~ "[StatusNet](http://status.net/) tool. Its members share short messages " +#~ "about their life and interests. [Join now](%%%%action.%s%%%%) to become " +#~ "part of this group and many more! ([Read more](%%%%doc.help%%%%))" +#~ msgstr "" +#~ "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +#~ "[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +#~ "использованием свободного программного обеспечения [StatusNet](http://" +#~ "status.net/). Участники обмениваются короткими сообщениями о своих " +#~ "новостях. [Зарегистрируйся](%%%%action.%s%%%%), чтобы стать участником " +#~ "группы и получить множество других возможностей! ([Читать далее](%%%%doc." +#~ "help%%%%))" + +#~ msgid "" +#~ "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +#~ "[StatusNet](http://status.net/) tool. [Join now](%%%%action.%s%%%%) to " +#~ "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#~ msgstr "" +#~ "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта " +#~ "для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), " +#~ "созданного с использованием свободного программного обеспечения " +#~ "[StatusNet](http://status.net/). [Зарегистрируйся](%%%%action.%s%%%%), " +#~ "чтобы всегда получать сообщения участника **%s** и иметь доступ ко " +#~ "множеству других возможностей! ([Читать далее](%%%%doc.help%%%%))" + +#, fuzzy +#~ msgid "Members of %s group" +#~ msgstr "Лента записей от группы %s" + +#, fuzzy +#~ msgid "Members of %1$s on %2$s" +#~ msgstr "Сообщение для %1$s на %2$s" + +#, fuzzy +#~ msgid "Group not found" +#~ msgstr "Пользователь не найден." + +#, fuzzy +#~ msgid "User not found" +#~ msgstr "Пользователь не найден." + +#, fuzzy +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Это не ваш аккаунт на Твиттере." + +#, fuzzy +#~ msgid "Twitter is not available." +#~ msgstr "Страница недоступна для того типа, который Вы задействовали." + +#, fuzzy +#~ msgid "Twitter account" +#~ msgstr "Твиттер аккаунт" + +#, fuzzy +#~ msgid "Connected Twitter account" +#~ msgstr "Соединить с существующей записью" + #~ msgid "Code not yet ready." #~ msgstr "Код ещё не готов." From 15d0055c6f2e3b7007a82df40502e15cf5c32a13 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 15:18:04 -0500 Subject: [PATCH 15/15] allowed_nickname blocks top level url router names --- classes/User.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/classes/User.php b/classes/User.php index 3fa9cc1526..530ece1ba4 100644 --- a/classes/User.php +++ b/classes/User.php @@ -118,7 +118,7 @@ class User extends Memcached_DataObject { // XXX: should already be validated for size, content, etc. - $blacklist = array(); + $blacklist = common_config('nickname', 'blacklist'); //all directory and file names should be blacklisted $d = dir(INSTALLDIR); @@ -126,8 +126,15 @@ class User extends Memcached_DataObject $blacklist[]=$entry; } $d->close(); - $merged = array_merge($blacklist, common_config('nickname', 'blacklist')); - return !in_array($nickname, $merged); + + //all top level names in the router should be blacklisted + $router = Router::get(); + foreach(array_keys($router->m->getPaths()) as $path){ + if(preg_match('/^\/(.*?)[\/\?]/',$path,$matches)){ + $blacklist[]=$matches[1]; + } + } + return !in_array($nickname, $blacklist); } function getCurrentNotice($dt=null)

I&zQ!kHd_Q(KGa+8uSXB%GRXFyL;x z*y|2hpVZ%W>aeq>UyZNrqJTMT_w)6fxB$N{ru~+&gVfE{17z4NM_={ry#8uyMXp*t zKT*}qPgPgU%Ph4{orfQ7lOJX_RoLtEUhH%Sg8D%IyIbnmf`D36U#{+~AEjQbPE|iv nC(Wxp>s{IC{L%;73Ih(~|9|7`%~&w0SpB7bk*r@Qx5xMg(}=Tp delta 5934 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 R$J$B3+BPsI$^I0K|1Td$A@~3Q diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 779d7489eb..7f3df0492b 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-05-28 14:56+0000\n" "Last-Translator: Rui de Brito Mendes \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "de" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Actualizações em resposta a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou-o a juntar-se a ele no %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -104,6 +106,7 @@ msgstr "" "Sinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." @@ -126,25 +129,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Updates de %1$s como resposta às actualizações de %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's estado em %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Fluxo Público de %s" @@ -154,34 +160,48 @@ msgstr "Fluxo Público de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Estado de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s actualizações de todos!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +209,8 @@ msgstr "" "(Deverá receber uma mensagem por email dentro de momentos, com instrucções " "sobre como confirmar o seu endereço de email.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +219,8 @@ msgstr "" "**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogging. " @@ -210,30 +232,34 @@ msgstr ". Os colaboradores devem ser citados usando nome completo ou apelido." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 letras ou números, sem pontuação ou espaços. Obrigatório." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ou mais caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ou mais caracteres, e não a esqueça!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ou mais caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -243,6 +269,7 @@ msgstr "" "aprovar que %s envie mensagens para sí." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -278,7 +305,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Método da API não encontrado!" @@ -301,16 +355,23 @@ msgstr "Método da API não encontrado!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método da API em construcção." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceitar" @@ -321,6 +382,9 @@ msgstr "Aceitar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Adicionar" @@ -338,27 +402,29 @@ msgstr "Adicionar ou remover OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Endereço" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Endereços dos amigos a convidar (um por linha)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas as subscrições" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas as actualizações de %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas as actualizações com o termo \"%s\"" @@ -368,31 +434,38 @@ msgstr "Todas as actualizações com o termo \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Login já efectuado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Já subscrito!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Tem a certeza que permite remover esta mensagem?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar subscrição" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Efectuar login automático; não utilizar em computadores de uso partilhado!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -402,15 +475,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -420,6 +497,7 @@ msgstr "" "para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -428,7 +506,7 @@ msgstr "" "caixa de spam) pela mensagem com as instrucções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "A aguardar confirmação deste número de telefone." @@ -440,6 +518,8 @@ msgstr "Antes »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" @@ -447,16 +527,18 @@ msgstr "Bio" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Não é possível remover a mensagem." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Não é possível ler o URL do avatar '%s'" @@ -464,6 +546,8 @@ msgstr "Não é possível ler o URL do avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Não é possível guardar a nova password." @@ -471,31 +555,34 @@ msgstr "Não é possível guardar a nova password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Não é possível instanciar um objecto do OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Não é possível normalizar esse ID de Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Não é possível normalizar esse endereço de email" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modificar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Alterar email handling" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Modificar palavra-passe" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modificar a sua palavra-passe" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" @@ -519,6 +607,9 @@ msgstr "Modificar as suas definições de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -531,12 +622,14 @@ msgstr "Confirmar Endereço" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmação cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmação" @@ -545,7 +638,8 @@ msgstr "Código de confirmação" msgid "Confirmation code not found." msgstr "Código de confirmação não encontrado" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -578,20 +672,24 @@ msgstr "" "Obrigado por se registar e esperamos que se divirta usando este serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Ligar" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Ligar conta existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contacto" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Não foi possível criar o formulário de OpenID: %s" @@ -599,35 +697,39 @@ msgstr "Não foi possível criar o formulário de OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não foi possível seguir utilizador: %s já está na sua lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Não foi possível redireccionar para o servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Não foi possível guardar a info do avatar " #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Não foi possível guardar a nova info do perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Não foi possível subscrever outros a si." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Não foi possível subscrever. " @@ -640,7 +742,8 @@ msgstr "" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -648,15 +751,17 @@ msgstr "Não foi possível converter os tokens de requisição em tokens de aces #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do email." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Não foi possível apagar a subscrição." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Não foi possivel encontrar algum estado." @@ -669,29 +774,38 @@ msgstr "Não foi possível obter um token de requisição." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Não foi possível salvar o perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível actualizar o utilizador para auto-subscrição." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Não foi possível actualizar o registo do utilizador." @@ -707,42 +821,48 @@ msgstr "Não foi possível actualizar o registo do utilizador." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Não foi possível actualizar o utilizador." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Criar" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Criar um novo utilizador com esta alcunha." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Criar nova conta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Criar nova conta para OpenID que já possui um utilizador." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço do Jabber/GTalk já confirmado." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone com serviço SMS activo já confirmado." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Endereço de email já confirmado." @@ -751,23 +871,27 @@ msgid "Currently" msgstr "Actualmente" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ocorreu um erro na base de dados ao inserir a hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Apagar mensagem" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descreva-se e aos seus interesses em 140 caracteres" @@ -775,11 +899,13 @@ msgstr "Descreva-se e aos seus interesses em 140 caracteres" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Endereço de Email" @@ -789,39 +915,43 @@ msgid "Email Settings" msgstr "Definições do Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Endereço de Email já existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmação do Endereço de Email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de Email, como \"nomedeutilizador@exemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Endereços de Email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Introduza uma alcunha ou um endereço de email" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Introduza o código que recebeu no seu telefone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro ao autorizar token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erro ao ligar utilizador ao OpenID." @@ -832,39 +962,46 @@ msgstr "Erro ao ligar utilizador." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erro ao inserir avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erro ao inserir novo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro ao inserir perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erro ao guardar confirmação do endereço." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erro ao guardar perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erro ao guardar o perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erro ao guardar o utilizador." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erro ao guardar utilizador; inválido." @@ -873,6 +1010,9 @@ msgstr "Erro ao guardar utilizador; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erro ao configurar utilizador." @@ -883,6 +1023,7 @@ msgstr "Erro ao actualizar o perfil." #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erro ao actualizar o perfil remoto" @@ -892,33 +1033,36 @@ msgid "Error with confirmation code." msgstr "Erro no código de confirmação." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Alcunha já existente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Falha ao actualizar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed para os amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed para as respostas a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para a tag %s" @@ -933,7 +1077,7 @@ msgstr "Encontrar conteúdo dos mensagens" msgid "Find people on this site" msgstr "Encontrar pessoas neste site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -946,6 +1090,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome Completo" @@ -954,23 +1103,33 @@ msgstr "Nome Completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo é demasiado longo (máx. 255 caracteres)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Início" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Página Principal" @@ -978,21 +1137,27 @@ msgstr "Página Principal" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A Homepage inserida não é um URL válido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Quero postar mensagens por email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Endereço IM" @@ -1002,7 +1167,7 @@ msgid "IM Settings" msgstr "Definições de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1010,7 +1175,7 @@ msgstr "" "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" "passe para a ligar ao seu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1018,7 +1183,7 @@ msgstr "" "Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e " "clique em \"Adicionar\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1030,25 +1195,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Email a receber" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "O endereço de email de recepção removido." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Palavra-passe antiga incorrecta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome de utilizador ou palavra-passe incorrecta" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1057,30 +1228,31 @@ msgstr "" "endereço de email registado na sua conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL do avatar inválido '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Endereço de email inválido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Página principal inválida '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de licença inválido '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Conteúdo da mensagem inválido" @@ -1095,13 +1267,13 @@ msgid "Invalid notice url" msgstr "URL da mensagem inválido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL do perfil inválido '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL de perfil inválido (formato incorrecto)" @@ -1119,28 +1291,35 @@ msgstr "Tamanho inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome de utilizador ou palavra-passe inválido." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Contive(s) enviado(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Convite(s) enviado(s) para as seguintes pessoas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Convidar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Convidar novos utilizadores" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1149,11 +1328,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1161,12 +1341,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Linguagem" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." @@ -1175,7 +1357,15 @@ msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localidade" @@ -1184,7 +1374,12 @@ msgstr "Localidade" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Localidade é muito longa (máx. 255 caracteres)." @@ -1193,18 +1388,22 @@ msgstr "Localidade é muito longa (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Entrar" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Entrar com conta [OpenID](%%doc.openid%%)" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1212,25 +1411,29 @@ msgid "" "%). " msgstr "" "Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com " -"[OpenID](%%action.openidlogin%%). " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu-se da palavra-passe?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1241,16 +1444,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1260,42 +1465,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nova alcunha" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova palavra-passe" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." @@ -1305,7 +1518,13 @@ msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Alcunha" @@ -1314,7 +1533,12 @@ msgstr "Alcunha" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Alcunha já em uso. Tente outra diferente." @@ -1323,47 +1547,58 @@ msgstr "Alcunha já em uso. Tente outra diferente." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Alcunha só deve conter letras minúsculas e números. Sem espaços." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Alcunha não permitida." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Alcunha do utilizador que pretende seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Alcunha ou email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Não" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nenhum código introduzido" @@ -1375,11 +1610,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1388,7 +1627,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1399,6 +1640,7 @@ msgstr "Nenhuma alcunha fornecida pelo servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nenhuma alcunha." @@ -1406,12 +1648,14 @@ msgstr "Nenhuma alcunha." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nenhum numero de telefone." @@ -1421,7 +1665,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nenhum endereço de email registado para esse utilizador." @@ -1433,7 +1678,7 @@ msgstr "Nenhum pedido encontrado!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nenhum resultado" @@ -1444,12 +1689,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nenhum estado encontrado com esse ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nenhum estado com esse ID encontrado." @@ -1459,13 +1708,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1503,12 +1754,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1522,32 +1783,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1555,6 +1822,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1574,7 +1846,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1585,11 +1858,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1605,11 +1880,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1626,39 +1905,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1666,29 +1950,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1704,11 +1993,12 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1718,34 +2008,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1765,14 +2067,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1784,7 +2089,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1793,7 +2098,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1802,42 +2109,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1846,17 +2163,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1866,12 +2185,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1884,37 +2205,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1928,6 +2257,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1936,41 +2268,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1979,17 +2318,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -2002,12 +2342,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -2017,14 +2366,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2032,48 +2381,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2093,27 +2450,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2121,24 +2483,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2146,28 +2512,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2187,6 +2560,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2196,63 +2570,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2261,18 +2645,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2280,40 +2668,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2325,6 +2718,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2333,25 +2729,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2360,18 +2768,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2383,15 +2794,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2420,38 +2838,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2468,12 +2895,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2497,11 +2927,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2510,29 +2945,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2540,7 +2979,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2561,11 +3002,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2583,20 +3025,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2605,21 +3049,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2633,82 +3079,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2730,12 +3190,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2756,6 +3218,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2764,6 +3246,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2771,22 +3254,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2796,11 +3285,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2840,33 +3331,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2920,6 +3422,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2948,6 +3455,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2968,12 +3477,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2981,7 +3493,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3005,51 +3517,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3068,14 +3599,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3084,6 +3618,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3092,24 +3627,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3120,33 +3660,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3163,18 +3713,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3184,89 +3735,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3274,11 +3847,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3293,7 +3866,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3305,7 +3878,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3314,31 +3887,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3351,14 +3932,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s e amigos" @@ -3368,21 +3954,31 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3399,34 +3995,43 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3434,11 +4039,11 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3456,38 +4061,56 @@ msgstr "Tem a certeza que permite remover esta mensagem?" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3496,15 +4119,16 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3521,7 +4145,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3536,7 +4161,7 @@ msgstr "" "Um código de confirmação foi enviado para o endereço fornecido. Tem que " "aprovar que %s envie mensagens para sí." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3550,52 +4175,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Antes »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3637,12 +4277,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3656,7 +4298,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3670,15 +4313,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3686,12 +4331,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar actualizado." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3710,7 +4357,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3725,6 +4373,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "" @@ -3734,7 +4383,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3756,20 +4405,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Código de confirmação não encontrado" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3778,15 +4427,18 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3794,21 +4446,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3820,15 +4476,17 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "" @@ -3840,11 +4498,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3861,7 +4522,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "" @@ -3885,11 +4546,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "" @@ -3898,16 +4561,17 @@ msgstr "" msgid "Change your password." msgstr "Modificar a sua palavra-passe" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3917,11 +4581,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3934,20 +4599,25 @@ msgstr "" "humanos)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas de %s" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3967,11 +4637,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4024,7 +4696,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4034,50 +4707,71 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4092,7 +4786,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4102,31 +4796,38 @@ msgid "'s profile" msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todas as subscrições" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4151,7 +4852,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "A aguardar confirmação deste número de telefone." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4209,16 +4910,17 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4240,7 +4942,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4250,16 +4952,16 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4267,20 +4969,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4288,15 +4993,16 @@ msgstr "" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4309,146 +5015,155 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Sobre" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Modificar a sua palavra-passe" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Ligar conta existente" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4461,11 +5176,14 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4486,32 +5204,37 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Todas as subscrições" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4520,20 +5243,20 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4563,11 +5286,11 @@ msgstr "" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4587,24 +5310,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4619,43 +5342,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "de" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ou mais caracteres" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4676,27 +5407,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4712,31 +5445,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Já subscrito!." -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O utilizador bloqueou-o." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscrever este utilizador" @@ -4749,13 +5484,1981 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquear este utilizador" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Des-Subscrever deste utilizador" + +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Tem a certeza que permite remover esta mensagem?" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Procurar por \"%s\" no fluxo de mensagens" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " +"palavra-passe antes de alterar as suas configurações." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fluxo Público de %s" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Criar" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +msgid "Your profile" +msgstr "" + +#: actions/showstream.php:149 +#, php-format +msgid "%s's profile" +msgstr "" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed para a tag %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Modificar as suas definições de perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +msgid "No such user!" +msgstr "" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" +"passe para a ligar ao seu OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está agora a ouvir os seus comunicados em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Sinceramente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloquear este utilizador" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível remover a mensagem." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Endereço de email inválido: %s" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Alcunha já em uso. Tente outra diferente." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar o formulário de OpenID: %s" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "URI da mensagem inválido" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nenhuma alcunha." + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O utilizador bloqueou-o." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível actualizar o utilizador." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O utilizador bloqueou-o." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Não foi possível salvar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " +"nova que será enviada para o endereço de email que tem configurado na sua " +"conta." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro no código de confirmação." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscrever este utilizador" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s e amigos" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed para a tag %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível actualizar o utilizador." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possivel encontrar algum estado." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizações em resposta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Todas as subscrições" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modificar a sua palavra-passe" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Ligar" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Entrar" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Desbloquear este utilizador" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "A Homepage inserida não é um URL válido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Entrar com o seu nome de utilizador e palavra passe. Não está registado " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as actualizações com o termo \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Nenhum código introduzido" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler o URL do avatar '%s'" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Não foi possível redireccionar para o servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Encontrar conteúdo dos mensagens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Não é possível remover a mensagem." + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Erro ao guardar o utilizador." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Código de confirmação não encontrado" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "de" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Apagar mensagem" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.mo b/locale/pt_BR/LC_MESSAGES/statusnet.mo index a5a6f27253deb1e043df8a2d6f0aee6ef1d087e0..099e3fd6d64c988f7462a5e58990ce953b71cf92 100644 GIT binary patch delta 28527 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 leRA0~c-xI7dS8?prRB( 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\n" "Language-Team: Português do Brasil\n" @@ -14,14 +14,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -34,17 +34,19 @@ msgid " from " msgstr " de " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Atualizações respondendo à %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou você para se juntar ao %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -102,6 +104,7 @@ msgstr "" "Cordialmente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens em %2$s." @@ -124,26 +127,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s atualizações que respondem a mensagens de %2$s / %3$s." # Apesar do termo em inglês ser status, na verdade ele refere-se a uma determinada mensagem. #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Mensagem de %1$s em %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Fluxo Público de %s" @@ -153,34 +159,48 @@ msgstr "Fluxo Público de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Status de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s atualizações de todo mundo!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -188,7 +208,8 @@ msgstr "" "(Você receberá uma mensagem por e-mail a qualquer momento, com instruções " "sobre como confirmar seu endereço.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -197,7 +218,8 @@ msgstr "" "**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogagem. " @@ -210,31 +232,35 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "No mínimo 6 caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "No mínimo 6 caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -244,6 +270,7 @@ msgstr "" "informou. Você deve permitir que %s envie mensagens para você." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -279,7 +306,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "O método da API não foi encontrado!" @@ -302,16 +356,23 @@ msgstr "O método da API não foi encontrado!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "O método da API está em construção." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceitar" @@ -322,6 +383,9 @@ msgstr "Aceitar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Adicionar" @@ -339,27 +403,29 @@ msgstr "Adicionar ou remover OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Endereço" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Endereços dos seus amigos que serão convidados (um por linha)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas as assinaturas" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas as atualizações para %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas as atualizações correspondentes ao termo \"%s\"" @@ -369,32 +435,39 @@ msgstr "Todas as atualizações correspondentes ao termo \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Já está logado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Já foi assinado!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Você tem certeza que deseja excluir esta mensagem?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a assinatura" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Entrar automaticamente sem pedir a senha. Não use em computadores " "compartilhados!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Assinar automaticamente à quem me assinar" @@ -402,15 +475,19 @@ msgstr "Assinar automaticamente à quem me assinar" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "O avatar foi atualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -421,6 +498,7 @@ msgstr "" "contatos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -429,7 +507,7 @@ msgstr "" "de spam!) por uma mensagem com mais instruções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Aguardando a confirmação deste número de telefone." @@ -440,6 +518,8 @@ msgstr "Anteriores »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Descrição" @@ -447,16 +527,18 @@ msgstr "Descrição" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Descrição muito extensa (máximo 140 caracteres)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Não é possível excluir esta mensagem." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Não é possível ler a URL '%s' do avatar" @@ -464,6 +546,8 @@ msgstr "Não é possível ler a URL '%s' do avatar" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Não é possível salvar a nova senha." @@ -471,31 +555,34 @@ msgstr "Não é possível salvar a nova senha." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Não foi possível instanciar um objeto do OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Não foi possível normalizar essa ID do Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Alterar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Configurações de uso do e-mail" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Alterar a senha" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Altere a sua senha" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" @@ -519,6 +607,9 @@ msgstr "Alterar as suas configurações de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -531,12 +622,14 @@ msgstr "Confirme o endereço" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmação cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmação" @@ -545,7 +638,8 @@ msgstr "Código de confirmação" msgid "Confirmation code not found." msgstr "O código de confirmação não foi encontrado." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -579,20 +673,24 @@ msgstr "" "Obrigado por se registrar e esperamos que você aproveite o serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectar" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectar-se a uma conta já existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contato" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Não foi possível criar o formulário OpenID: %s" @@ -600,35 +698,39 @@ msgstr "Não foi possível criar o formulário OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não é possível seguir o usuário: %s já está na sua lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Não é possível seguir o usuário: Usuário não encontrado." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Não foi possível redirecionar para o servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Não foi possível salvar as informações do avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Não foi possível salvar as novas informações do perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Não foi possível fazer com que o outros o sigam." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Não foi possível assinar." @@ -650,15 +752,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Não foi possível excluir a assinatura." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Não foi possível encontrar nenhum status." @@ -671,29 +775,38 @@ msgstr "Não foi possível obter um token de requisição." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Não foi possível salvar o perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível atualizar o usuário para assinar automaticamente." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Não foi possível atualizar o registro do usuário." @@ -709,42 +822,48 @@ msgstr "Não foi possível atualizar o registro do usuário." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Não foi possível atualizar o usuário." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Criar" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Criar um novo usuário com este apelido." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Criar uma nova conta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Criando uma nova conta para um OpenID que já tem um usuário." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço de Jabber/GTalk já confirmado." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone já habilitado para receber SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Endereço de e-mail já confirmado." @@ -753,23 +872,27 @@ msgid "Currently" msgstr "Neste momento" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção de hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro no banco de dados na inserção da reposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Excluir a mensagem" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." @@ -777,11 +900,13 @@ msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Endereço de e-mail" @@ -791,39 +916,43 @@ msgid "Email Settings" msgstr "Configurações do e-mail" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "O endereço de e-mail já existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmação do endereço de e-mail" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Endereços de e-mail" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Entre com o apelido ou endereço de e-mail." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Informe o código que você recebeu no seu telefone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro na autorização do token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erro na conexão do usuário ao OpenID." @@ -834,39 +963,46 @@ msgstr "Erro na conexão do usuário." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erro na inserção do avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erro na inserção do novo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro na inserção do perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erro ao salvar o endereço de confirmação" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erro ao salvar o perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erro ao salvar o perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erro ao salvar o usuário." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erro ao salvar usuário; inválido." @@ -875,6 +1011,9 @@ msgstr "Erro ao salvar usuário; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erro na configuração do usuário." @@ -885,6 +1024,7 @@ msgstr "Erro na atualização do perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erro na atualização do perfil remoto" @@ -894,33 +1034,36 @@ msgid "Error with confirmation code." msgstr "Erro com o código de confirmação." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Apelido já existe" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Não foi possível atualizar o avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed para os amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed para respostas para %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para tag %s" @@ -935,7 +1078,7 @@ msgstr "Procure no conteúdo das mensagens" msgid "Find people on this site" msgstr "Procure por pessoas neste site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -948,6 +1091,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome completo" @@ -956,23 +1104,33 @@ msgstr "Nome completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é muito extenso (máx. 255 caracteres)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Início" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Site" @@ -980,21 +1138,27 @@ msgstr "Site" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A URL do site informada não é válida." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Eu quero publicar mensagens por e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Endereço do IM" @@ -1004,7 +1168,7 @@ msgid "IM Settings" msgstr "Configurações do IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1012,7 +1176,7 @@ msgstr "" "Se você já possui uma conta, utilize seu nome de usuário e senha para " "conectá-la ao seu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1020,7 +1184,7 @@ msgstr "" "Se você quer adicionar um OpenID à sua conta, informe-a na caixa abaixo e " "clique em \"Adicionar\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1031,25 +1195,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "E-mail de recebimento" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "O endereço de e-mail de recebimento foi removido." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "A senha antiga está incorreta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome de usuário e/ou senha incorreto(s)." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1058,30 +1228,31 @@ msgstr "" "mail informado no seu cadastro." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "A URL '%s' para o avatar é inválida" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Não é um endereço de e-mail válido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "O site '%s' é inválido" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "A URL '%s' da licença é inválida" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "O conteúdo da mensagem é inválido" @@ -1096,13 +1267,13 @@ msgid "Invalid notice url" msgstr "A URL da mensagem é inválida" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "A URL '%s' do perfil é inválida." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "A URL do perfil é inválida (formato inválido)" @@ -1120,44 +1291,52 @@ msgstr "Tamanho inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Convite(s) enviado(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Convite(s) enviado(s) para as seguintes pessoas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Convidar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Convidar novos usuários" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Ele funciona sob o software de microblogagem [StatusNet](http://status.net/), " -"versão %s, disponível sob a [GNU Affero General Public License] (http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +"Ele funciona sob o software de microblogagem [StatusNet](http://status." +"net/), versão %s, disponível sob a [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Esta ID do Jabber já pertence à outro usuário." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1168,12 +1347,14 @@ msgstr "" "ou no GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." @@ -1182,7 +1363,15 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localização" @@ -1191,7 +1380,12 @@ msgstr "Localização" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "A localização é muito extensa (máx. 255 caracteres)." @@ -1200,18 +1394,22 @@ msgstr "A localização é muito extensa (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logar" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logar-se com uma conta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1219,25 +1417,29 @@ msgid "" "%). " msgstr "" "Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma " -"[OpenID](%%action.openidlogin%%)." +"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." +"openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo (nome e sobrenome), de preferência seu nome \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu sua senha?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." @@ -1248,16 +1450,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Configure o recebimento de e-mails do %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1270,43 +1474,51 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Meus textos e arquivos estão disponíveis sob " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço de e-mail para postar para %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Novo apelido" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nova mensagem" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova senha" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" "A nova senha foi salva com sucesso. A partir de agora você já está logado." @@ -1317,7 +1529,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Apelido" @@ -1326,7 +1544,12 @@ msgstr "Apelido" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Este apelido já está em uso. Tente outro." @@ -1335,49 +1558,60 @@ msgstr "Este apelido já está em uso. Tente outro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "O apelido deve conter apenas letras minúsculas e/ou números e não pode ter " "acentuação e espaços." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Este apelido não é permitido." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Apelido do usuário que você quer seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Apelido ou e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Não" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nenhuma ID de Jabber." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Nenhum pedido de autorização!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Não foi selecionada nenhuma operadora." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Não foi digitado nenhum código" @@ -1389,11 +1623,15 @@ msgstr "Nenhum código de confirmação." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Nenhum conteúdo!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Nenhum endereço de e-mail." @@ -1402,7 +1640,9 @@ msgid "No id." msgstr "Nenhuma ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Nenhum endereço de e-mail para recebimentos." @@ -1413,6 +1653,7 @@ msgstr "Nenhum apelido fornecido pelo servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nenhum apelido." @@ -1420,12 +1661,14 @@ msgstr "Nenhum apelido." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nenhum número de telefone." @@ -1435,7 +1678,8 @@ msgid "No profile URL returned by server." msgstr "Nenhuma URL de perfil retornada pelo servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nenhum endereço de e-mail registrado para esse usuário." @@ -1447,7 +1691,7 @@ msgstr "Não foi encontrada nenhuma requisição!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nenhum resultado" @@ -1458,12 +1702,16 @@ msgstr "Sem tamanho definido." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Não foi encontrado nenhum status com esse ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Não foi encontrado nenhum status com esse ID." @@ -1473,13 +1721,15 @@ msgid "No such OpenID." msgstr "Essa OpenID não existe." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Esse documento não existe." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Essa mensagem não existe." @@ -1517,12 +1767,22 @@ msgstr "Essa assinatura não existe." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Usuário não encontrado." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" "Não foi encontrado nenhum usuário com essa identificação ou endereço de " @@ -1538,32 +1798,38 @@ msgid "Not a recovery code." msgstr "Não é um código de recuperação" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Não é um usuário registrado." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Formato de dados não suportado." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Não é uma ID de Jabber válida" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Não é uma OpenID válida." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Não é um endereço de e-mail válido" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -1571,6 +1837,11 @@ msgstr "Não é um endereço de e-mail válido." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Não é um apelido válido." @@ -1590,7 +1861,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Imagem inválida ou arquivo corrompido." @@ -1601,11 +1873,13 @@ msgstr "Não autorizado." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Não esperava por esta resposta!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Não encontrado" @@ -1621,11 +1895,15 @@ msgstr "Não encontrado" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Você não está logado." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Não é seguido!" @@ -1642,39 +1920,44 @@ msgid "Notice feed for %s" msgstr "Feed de mensagens de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "A mensagem não está associada a nenhum perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Mensagens" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas com %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Senha antiga" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuração da conta OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Submissão automática da OpenID" @@ -1682,29 +1965,34 @@ msgstr "Submissão automática da OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Logar-se via OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL da OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "A autenticação pela OpenID foi cancelada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Não foi possível logar via OpenID: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Falha na OpenID: %s" @@ -1720,11 +2008,12 @@ msgid "OpenID settings" msgstr "Configurações da OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Envio parcial." @@ -1734,34 +2023,46 @@ msgstr "Envio parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Senha" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "A senha e a confirmação não coincidem." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "A senha deve ter 6 caracteres ou mais." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Foi solicitada a recuperação da senha" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "A senha foi salva." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "As senhas não coincidem." @@ -1781,14 +2082,17 @@ msgid "People search" msgstr "Procurar pessoas" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Pessoal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensagem pessoal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telefone, sem pontuação ou espaços, com código de área" @@ -1803,7 +2107,7 @@ msgstr "" "alguém, clique em \"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." @@ -1812,7 +2116,9 @@ msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferências" @@ -1821,42 +2127,52 @@ msgstr "Preferências" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "As preferências foram salvas." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Idioma preferencial" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidade" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema ao salvar a mensagem." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL do Perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configurações do perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconhecido" @@ -1866,17 +2182,19 @@ msgstr "Feed de mensagens públicas" # Just for me. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Mensagens públicas" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publique um MicroID para meu endereço de e-mail." @@ -1886,12 +2204,14 @@ msgid "Recent Tags" msgstr "Tags recentes" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar a senha" @@ -1904,37 +2224,45 @@ msgstr "Código de recuperação para usuário desconhecido." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Não é permitido o registro." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registro realizado com sucesso" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Recusar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Lembrar neste computador" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remoto sem referencia local" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Assinatura remota" @@ -1948,6 +2276,9 @@ msgstr "Assinatura remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Remover" @@ -1956,7 +2287,7 @@ msgstr "Remover" msgid "Remove OpenID" msgstr "Remover OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1965,34 +2296,41 @@ msgstr "" "novamente! Se deseja realmente removê-la, adicione outra OpenID antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostas" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respostas para %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restaurar" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restaurar a senha" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Telefone para SMS" @@ -2001,17 +2339,18 @@ msgstr "Telefone para SMS" msgid "SMS Settings" msgstr "Configuração de SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmação de SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual à senha acima" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." @@ -2024,12 +2363,21 @@ msgstr "Igual à senha acima. Obrigatório." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Procurar" @@ -2039,7 +2387,7 @@ msgid "Search Stream Feed" msgstr "Procurar no fluxo de mensagens" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2048,7 +2396,7 @@ msgstr "" "Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da " "busca com espaços; eles devem ter 3 caracteres ou mais." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2059,33 +2407,38 @@ msgstr "" "caracteres ou mais." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecione uma operadora" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Envie e-mails para esse endereço para publicar novas mensagens." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Envie-me notificações de novos assinantes por e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Envie-me as mensagens via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2094,17 +2447,20 @@ msgstr "" "exorbitantes da minha operadora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Envie-me respostas de pessoas que eu não estou seguindo através do " -"Jabber/GTalk." +"Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/" +"GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configurações" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -2124,27 +2480,32 @@ msgid "Something weird happened." msgstr "Aconteceu alguma coisa estranha..." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de emails." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fonte" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estatísticas" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "O OpenID armazenado não foi encontrado." @@ -2152,24 +2513,28 @@ msgstr "O OpenID armazenado não foi encontrado." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Assinar" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Assinantes" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "A assinatura foi autorizada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "A assinatura foi recusada" @@ -2177,28 +2542,35 @@ msgstr "A assinatura foi recusada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Assinaturas" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Procurar por texto" @@ -2218,6 +2590,7 @@ msgid "That confirmation code is not for you!" msgstr "Esse código de confirmação não é seu!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Esse endereço de e-mail já pertence à outro usuário." @@ -2227,63 +2600,73 @@ msgid "That file is too big." msgstr "Esse arquivo é muito grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Essa já é sua ID do Jabber." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Esse já é seu endereço de e-mail." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Esse já é seu número de telefone." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Essa não é sua ID do Jabber." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esse não é seu endereço de email." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Esse não é seu número de telefone." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Isso é um endereço de IM errado." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Isso é um número de confirmação errado." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Esse número de telefone já pertence à outro usuário." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Está muito extenso. O tamanho máximo é de 255 caracteres." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para sua conta." @@ -2292,11 +2675,14 @@ msgstr "O endereço \"%s\" foi confirmado para sua conta." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "O endereço foi removido." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2692,8 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como autorizar a " "assinatura. Seu token de assinatura é:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2317,33 +2704,38 @@ msgstr "" "completamente a assinatura." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Estas são as pessoas que acompanham as mensagens de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Estas são as pessoas que acompanham as suas mensagens." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Estas são as pessoas cujas mensagens %s acompanha." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Estas são as pessoas cujas mensagens você acompanha." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Estas pessoas já são usuárias e você as acompanha automaticamente:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2352,7 +2744,7 @@ msgstr "" "no botão \"Enviar\" para ir para seu provedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2367,6 +2759,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requer POSTAGEM ou EXCLUSÃO." @@ -2375,49 +2770,64 @@ msgstr "Este método requer POSTAGEM ou EXCLUSÃO." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método requer um POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível em um tipo de mídia que você aceita" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso horário" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Para assinar, você pode [autenticar-se](%%action.login%%), ou " -"[registrar](%%action.register%%) uma nova conta. Se você já tem uma conta em " -"um [site de microblogagem compatível](%%doc.openmublog%%), informe a URL do " -"seu perfil abaixo." +"Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%" +"action.register%%) uma nova conta. Se você já tem uma conta em um [site de " +"microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil " +"abaixo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Duas IDs de usuário ou screen_names devem ser informados." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL do seu site, blog ou perfil em outro site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblogagem compatível" @@ -2429,15 +2839,22 @@ msgstr "URL do seu perfil em outro serviço de microblogagem compatível" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restauração inesperada da senha." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Ação desconhecida" @@ -2468,38 +2885,47 @@ msgstr "Cancelar" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versão do OMB não suportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de imagem não suportado." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Atualizações via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Atualizações via instant messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Atualizações de %1$s no %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Enviar" @@ -2520,6 +2946,7 @@ msgid "Upload a new profile image" msgstr "Envie uma nova imagem para o seu perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2527,7 +2954,9 @@ msgstr "" "serviço." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" @@ -2551,11 +2980,16 @@ msgstr "O usuário que está está sendo acompanhado não existe." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "O usuário não tem perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Apelido do usuário" @@ -2564,29 +2998,33 @@ msgid "User not found." msgstr "Usuário não encontrado." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Em que fuso horário você normalmente está?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "E aí, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imagem errado para '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamanho da imagem errada em '%s'" @@ -2594,7 +3032,9 @@ msgstr "Tamanho da imagem errada em '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sim" @@ -2617,11 +3057,12 @@ msgid "You are already logged in!" msgstr "Você já está logado!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Você já está assinando esses usuários:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Você não é amigo do usuário especificado." @@ -2639,7 +3080,7 @@ msgstr "Você pode criar uma nova conta para começar a publicar mensagens." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Você pode receber mensagens SMS do %%site.name%% através do e-mail." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2647,15 +3088,17 @@ msgstr "" "Você pode remover uma OpenID da sua conta, clicando no botão \"Remover\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Você pode enviar e receber mensagens através dos [instant " -"messages](%%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." +"Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%" +"%) Jabber/GTalk. Configure seu endereço e opções abaixo." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2666,21 +3109,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Você pode usar a assinatura local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Você não nos enviou esse perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2702,16 +3147,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Você não pode apagar o status de outro usuário." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Você deve estar logado para convidar outros usuários para usar o %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2719,20 +3167,21 @@ msgstr "" "Você será notificado assim que seus convidados aceitarem o convite e se " "registrarem neste site. Obrigado por aumentar a comunidade!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Você foi identificado. Informe uma nova senha abaixo." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Sua URL de OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Seu apelido neste servidor, ou seu e-mail registrado." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2741,47 +3190,57 @@ msgstr "" "A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " "com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "segundos atrás" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d dias atrás" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d horas atrás" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d mins atrás" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d meses atrás" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "1 dia atrás" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1 min atrás" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1 mês atrás" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1 ano atrás" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1 hora atrás" @@ -2803,12 +3262,14 @@ msgid "reply" msgstr "responder" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "igual à senha acima" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de arquivo não suportado" @@ -2829,6 +3290,26 @@ msgstr "« Posteriores" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." @@ -2838,6 +3319,7 @@ msgid "This notice is not a favorite!" msgstr "Essa mensagem não é uma favorita!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Não foi possível excluir a favorita." @@ -2845,24 +3327,30 @@ msgstr "Não foi possível excluir a favorita." msgid "Favor" msgstr "Tornar favorita" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " "favorita." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." @@ -2872,11 +3360,13 @@ msgstr "Eliminar favorita" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Mensagens favoritas de %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de mensagens favoritas de %s" @@ -2920,23 +3410,32 @@ msgid "Login with your username and password. " msgstr "Logue-se com o seu nome de usuário e senha. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nenhum destinatário especificado." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Você não pode enviar uma mensagem para esse usuário." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2944,11 +3443,13 @@ msgstr "" "para si." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Esse usuário não existe" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nova mensagem" @@ -3006,6 +3507,11 @@ msgstr "Você pode atualizar as informações do seu perfil pessoal aqui " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuário sem um perfil correspondente" @@ -3034,6 +3540,8 @@ msgid "New password successfully saved. " msgstr "A nova senha foi salva com sucesso. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "A senha deve ter 6 ou mais caracteres." @@ -3056,12 +3564,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para seguir alguem, você pode [autenticar-se](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed para favoritas de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Não foi possível recuperar as mensagens favoritas." @@ -3069,7 +3580,7 @@ msgstr "Não foi possível recuperar as mensagens favoritas." msgid "No such message." msgstr "Essa mensagem não existe." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." @@ -3093,53 +3604,72 @@ msgid "Mobile carrier for your phone. " msgstr "Operadora móvel do seu celular. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensagem direta para %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Todas as mensagens diretas enviadas para %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensagens diretas que você enviou" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todas as mensagens diretas enviadas por %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Nenhuma mensagem de texto!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "O usuário destinatário não foi encontrado." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Não é possível enviar mensagens diretas para usuários que não são seus " "amigos." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritas de %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s atualizações de favoritas por %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s marcaram sua mensagem como favorita" @@ -3162,14 +3692,17 @@ msgstr "" "automaticamente, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configurações do Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Conta do Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Conta do Twitter já verificada." @@ -3178,6 +3711,7 @@ msgid "Twitter Username" msgstr "Nome de usuário do Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sem espaços, por favor." @@ -3186,18 +3720,22 @@ msgid "Twitter Password" msgstr "Senha do Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar minhas mensagens para o Twitter automaticamente." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respostas \"@\" locais para o Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Assinar meus amigos do Twitter aqui." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3206,6 +3744,7 @@ msgstr "" "letras maiúsculas e minúsculas e sublinhado (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Não foi possível verificar suas credenciais no Twitter!" @@ -3216,33 +3755,43 @@ msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Não foi possível salvar suas configurações do Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "As configurações do Twitter foram salvas." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Essa não é a sua conta no Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Não foi possível remover o usuário do Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "A conta do Twitter foi removida." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Não foi possível salvar as preferências do Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "As preferências do Twitter foram salvas." @@ -3259,18 +3808,19 @@ msgid "The subscription has been rejected, but no " msgstr "A assinatura foi recusada, mas não " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados do comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "O comando foi completado" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "O comando falhou" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, mas esse comando ainda não foi implementado." @@ -3280,90 +3830,112 @@ msgid "Subscriptions: %1$s\n" msgstr "Assinaturas: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "O usuário não tem uma \"última mensagem\"" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Mensagem marcada como favorita." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Localização: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Site: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" "A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "A mensagem direta para %s foi enviada" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ocorreu um erro durante o envio da mensagem direta." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifique o nome do usuário que será assinado" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Efetuada a assinatura de %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifique o nome do usuário que deixará de ser assinado" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Cancelada a assinatura de %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificação desligada." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificação ligada." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." @@ -3371,11 +3943,11 @@ msgstr "Não é possível ligar a notificação." msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." @@ -3392,7 +3964,7 @@ msgstr "" "Você tem um novo endereço para publicação no %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nova mensagem particular de %s" @@ -3406,7 +3978,7 @@ msgstr "" "%1$s (%2$s) enviou uma mensagem particular para você:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." @@ -3415,31 +3987,39 @@ msgid "This form should automatically submit itself. " msgstr "Este formulário deve enviar-se automaticamente. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritas" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Mensagens favoritas de %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Recebidas" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Suas mensagens recebidas" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Enviadas" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Suas mensagens enviadas" @@ -3452,14 +4032,19 @@ msgid "Twitter integration options" msgstr "Opções de integração com o Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Para" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Não foi possível analisar a mensagem." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s e amigos, página %d" @@ -3469,21 +4054,31 @@ msgid "You can upload your personal avatar." msgstr "Você pode enviar seu avatar pessoal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Configurações do avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Visualização" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Cortar" @@ -3500,34 +4095,43 @@ msgid "There was a problem with your session token. " msgstr "Ocorreu um problema com o seu token de sessão. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Selecione uma área quadrada da imagem para ser seu avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Nossos dados do arquivo foi perdido." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Nosso arquivo foi perdido." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipo de arquivo desconhecido" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Não foi especificado nenhum perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Não foi encontrado nenhum perfil com esse ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquear usuário" @@ -3535,11 +4139,11 @@ msgstr "Bloquear usuário" msgid "Are you sure you want to block this user? " msgstr "Você tem certeza que deseja bloquear esse usuário?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Você já bloqueou esse usuário." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." @@ -3556,38 +4160,56 @@ msgstr "Você está prestes a apagar permanentemente uma mensagem. " msgid "Add to favorites" msgstr "Adicionar aos favoritos" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar o grupo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Você deve estar logado para criar um grupo." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Nenhum apelido" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Esse grupo não existe" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Você deve ser o administrador do grupo para editá-lo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Use esse formulário para editar o grupo." @@ -3596,14 +4218,15 @@ msgid "Nickname must have only lowercase letters " msgstr "O apelido deve conter apenas letras minúsculas " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "descrição muito extensa (máximo 140 caracteres)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "As configurações foram salvas." @@ -3620,7 +4243,8 @@ msgstr "Cria um novo endereço de e-mail para publicar no; " msgid "Send me email when someone " msgstr "Envie-me um e-mail quando alguém " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que meus amigos chamem minha atenção e enviem-me um e-mail." @@ -3634,7 +4258,7 @@ msgstr "" "Um código de confirmação foi enviado para o endereço de e-mail que você " "informou. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Erro no servidor - não foi possível obter o usuário!" @@ -3648,51 +4272,66 @@ msgstr "Se você deseja que o aplicativo %s atualize automaticamente " msgid "Allow %s to update my Facebook status" msgstr "Permitir que %s atualize meu status no Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Pular" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Nenhum conteúdo!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginação" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Próximo" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Anterior" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Obrigado por convidar seus amigos para usar o %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Foram enviados convites para os seguintes usuários:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Você foi convidado por %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Convide seus amigos para usar o %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amigos que já utilizam o %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar convites" @@ -3737,12 +4376,14 @@ msgstr "Se você deseja que %s atualize automaticamente " msgid "Sync preferences" msgstr "Preferências de sincronização" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Excluir a favorita" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Mensagens populares" @@ -3756,7 +4397,8 @@ msgid "The most popular notices on the site right now." msgstr "As etiquetas mais populares no site agora." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuários de destaque" @@ -3770,15 +4412,17 @@ msgstr "Usuários de destaque, pág. %d" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Esse usuário bloqueou o seu pedido de assinatura." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3786,12 +4430,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "O avatar foi atualizado." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Não foi possível atualizar o avatar." @@ -3811,7 +4457,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3826,6 +4473,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Criar uma nova conta" @@ -3838,7 +4486,7 @@ msgstr "" "Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " "interesses. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Procurar pessoas" @@ -3863,23 +4511,23 @@ msgstr "Envie-me as mensagens via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Nenhum código de confirmação." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "" "Você deve estar autenticado para convidar outros usuários para usar o %s" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Você já está assinando esses usuários:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoritas de %s" @@ -3888,18 +4536,21 @@ msgstr "%s / Favoritas de %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "" "Você deve estar autenticado para convidar outros usuários para usar o %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Essa etiqueta não existe." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Você não está assinando esse perfil." @@ -3909,22 +4560,26 @@ msgstr "Você não está assinando esse perfil." msgid "You may not leave a group while you are its administrator." msgstr "Você não pode apagar o status de outro usuário." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Não foi possível atualizar o registro do usuário." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3936,17 +4591,19 @@ msgstr "Nenhum status atual" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." msgstr "Você pode criar uma nova conta usando esse formulário. " -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Não foi possível criar a favorita." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Não foi possível salvar a assinatura." @@ -3961,11 +4618,14 @@ msgstr "Esse arquivo é muito grande." msgid "Don't send a message to yourself; " msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Mensagem publicada" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erro no Ajax" @@ -3984,7 +4644,7 @@ msgstr "Chamada de atenção enviada" msgid "Nudge sent!" msgstr "Chamada de atenção enviada!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Autenticar-se via OpenID" @@ -4010,11 +4670,13 @@ msgstr "Encolhimento automático de URL" msgid "Service" msgstr "Serviço" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Serviço de encolhimento automático a ser utilizado." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." @@ -4023,17 +4685,18 @@ msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres) msgid "Change your password." msgstr "Altera a sua senha" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "A senha foi salva." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Não é uma etiqueta de pessoa válida: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuários auto-etiquetados com %s - pág. %d" @@ -4043,12 +4706,13 @@ msgstr "Usuários auto-etiquetados com %s - pág. %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Esses são os usuários que se auto-etiquetaram como \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Perfil desconhecido" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4061,20 +4725,25 @@ msgid "Automatically subscribe to whoever " msgstr "Assinar automaticamente à quem me assinar (melhor para não humanos)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Não foi possível recuperar o fluxo público." @@ -4097,11 +4766,13 @@ msgstr "Fluxo de mensagens públicas" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Desculpe, somente convidados podem se registrar." @@ -4163,7 +4834,8 @@ msgstr "(Você receberá uma mensagem por e-mail a qualquer momento, com " msgid "That's a local profile! Login to subscribe." msgstr "Esse é um perfil local! Autentique-se para assinar." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Respostas para %s" @@ -4173,55 +4845,76 @@ msgstr "Respostas para %s" msgid "%s favorite notices, page %d" msgstr "Mensagens favoritas de %s" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Esse perfil não existe." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Mensagens" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Outras opções" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Mensagens de %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Membro desde" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 #, fuzzy msgid "(None)" msgstr "(nenhum)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4239,7 +4932,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Recebidas por %s - pág. %d" @@ -4250,35 +4943,42 @@ msgid "'s profile" msgstr "Perfil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "O usuário não tem perfil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Outras opções" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nova mensagem" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Assinantes" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4306,7 +5006,7 @@ msgstr "Envie-me as mensagens via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Aguardando a confirmação deste número de telefone." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Selecione uma operadora" @@ -4367,16 +5067,17 @@ msgstr "Estas são as pessoas cujas mensagens %s acompanha." msgid "These are the people whose " msgstr "Estas são as pessoas que acompanham as mensagens de %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mensagens etiquetadas com %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4399,7 +5100,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Etiquetas" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4412,16 +5113,16 @@ msgid "There was a problem with your session token." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use esse formulário para adicionar etiquetas aos seus assinantes ou " @@ -4431,20 +5132,23 @@ msgstr "" msgid "No such tag." msgstr "Essa etiqueta não existe." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblogs etiquetados com %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Não foi possível bloquear o usuário." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Não encontrado." @@ -4454,15 +5158,16 @@ msgstr "" "Adicione a sua conta do Twitter para enviar suas mensagens para lá " "automaticamente, " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nome de usuário do Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Senha do Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amigos do Twitter" @@ -4475,150 +5180,159 @@ msgstr "Nome de usuário deve ter números," msgid "Unable to retrieve account information " msgstr "Não foi possível obter informações da conta" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nenhuma ID de perfil na requisição." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Nenhum perfil com essa ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Cancelado" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Grupos de %s, página %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Muitas mensagens em um período curto de tempo; dê uma respirada e publique " "novamente daqui a alguns minutos." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Você foi banido de publicar mensagens nesse site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Enviar um avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Outras" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Outras opções" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária no site" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e mensagens dos amigos" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Pesquisar por pessoa ou texto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Conta" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Alterar email, avatar, senha, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Conectar por IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sair deste site" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Entrar" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Criar uma nova conta" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Entrar com OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Ajuda" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nova mensagem" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nova mensagem" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Navegação pelas assinaturas" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Todas" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Bloquear usuário" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4631,11 +5345,14 @@ msgstr "Tirar das favoritas" msgid "To use the %s Facebook Application you need to login " msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " uma nova conta." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publicado" @@ -4655,31 +5372,36 @@ msgstr "Filtrar etiquetas" msgid "All" msgstr "Todas" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Selecione uma etiqueta para reduzir a lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL para seu site, blog ou perfil em outro site" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descreva o grupo ou tópico em 140 caracteres." -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" @@ -4688,20 +5410,20 @@ msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" msgid "Group" msgstr "Grupo" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propriedades do grupo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Adicionar ou editar logo de %s" @@ -4731,11 +5453,11 @@ msgstr "Entrar" msgid "Leave" msgstr "Sair" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Autentique-se com um nome de usuário e senha" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Cadastre-se para uma nova conta" @@ -4757,17 +5479,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s agora está acompanhando " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Localização: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Site: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4776,7 +5498,7 @@ msgstr "" "Descrição: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" @@ -4791,39 +5513,47 @@ msgstr "%1$s (%2$s) quer saber como você está " msgid "%1$s just added your notice from %2$s" msgstr "%1$s acabou de marcar sua mensagem de %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "De" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Enviar uma mensagem" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caracteres disponíveis" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "em resposta à" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Excluir esta mensagem" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Excluir" @@ -4844,27 +5574,29 @@ msgstr "Chame a atenção deste usuário" msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(nenhum)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grupos de usuário" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetas recentes" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacada" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4880,31 +5612,33 @@ msgstr "Procurar por grupos neste site" msgid "Untitled section" msgstr "Seção sem título" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Pessoas que %s assina" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Assinantes de %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "O grupo %s é membro de" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O usuário bloqueou você." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Assinar este usuário" @@ -4917,10 +5651,11 @@ msgid "Top posters" msgstr "Quem mais publica" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquear este usuário" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" @@ -4928,6 +5663,2068 @@ msgstr "Desbloquear" msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Você pode enviar seu avatar pessoal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "O avatar foi atualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " +"desfeito." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Selecione uma área quadrada da imagem para ser seu avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " +"interesses. Separe os termos da busca com espaços; eles devem ter 3 " +"caracteres ou mais." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ocorreu um erro durante o envio da mensagem direta." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Procurar por \"%s\" no fluxo de mensagens" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razões de segurança, por favor, digite novamente seu nome de usuário e " +"senha antes de alterar suas configurações." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " +"número de telefone." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Criar" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Esse perfil não existe." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Perfil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Envidas para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configurações do perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone que você " +"informou. Verifique sua caixa de entrada (e de spam!) para o código e " +"instruções sobre como usá-lo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Esse usuário não existe" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Adicione a sua conta do Twitter para enviar suas mensagens para lá " +"automaticamente, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " +"mensagens deste usuário. Se você não solicitou seguir as mensagens de " +"alguém, clique em \"Cancelar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Pesquisar por pessoa ou texto" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " +"novamente daqui a alguns minutos." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Conectar por IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Chamar a atenção" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s agora está acompanhando suas mensagens em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialmente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Procurar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Esse documento não existe." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Bloquear usuário" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "O usuário não tem perfil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos, página %d" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Não foi possível desbloquear o usuário." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível excluir esta mensagem." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Este apelido já está em uso. Tente outro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar a favorita." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nova mensagem" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nova mensagem" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Não é um apelido válido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Não foi especificado nenhum perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O usuário bloqueou você." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Você não está assinando esse perfil." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuário" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Você deve estar logado para criar um grupo." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Outras opções" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível atualizar o usuário." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Não foi possível salvar suas configurações do Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "As preferências de sincronização foram salvas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Você deve ser o administrador do grupo para editá-lo" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuário bloqueou você." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nova mensagem" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Não foi possível salvar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " +"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configurações do perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " +"de e-mail que armazenou em sua conta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Você foi identificado. Informe uma nova senha abaixo." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Foi solicitada a recuperação da senha" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro com o código de confirmação." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Assinar este usuário" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Mensagens favoritas de %s" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Não é um usuário local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Mensagens etiquetadas com %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Mensagens de %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s agora está acompanhando " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed de mensagens de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Essa mensagem já é uma favorita!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Essa mensagem não é uma favorita!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível recuperar o fluxo público." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Nenhum destinatário especificado." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possível encontrar nenhum status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Atualizações respondendo à %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s assinaturas" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configurações do perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Você não está assinando esse perfil." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema ao salvar a mensagem." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensagem para %1$s no %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "O usuário não tem perfil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Enviar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Altere a sua senha" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Procurar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuário" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Adicionar ou editar logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Nenhum conteúdo!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuário" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Procurar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "A URL do site informada não é válida." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Essa etiqueta não existe." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensagem direta para %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não é possível seguir o usuário: Usuário não encontrado." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Você já está assinando esses usuários:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Você não está assinando esse perfil." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupos de %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "O grupo %s é membro de" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opções" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de imagem não suportado." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuário que está está sendo acompanhado não existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Não autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Não foi possível converter os tokens de requisição para tokens de acesso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versão desconhecida do protocolo OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Essa mensagem não existe." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Nosso arquivo foi perdido." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página não está disponível em um " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " +"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." +"openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as atualizações correspondentes ao termo \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Descrição muito extensa (máximo 140 caracteres)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Esse é um perfil local! Autentique-se para assinar." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Mensagens de %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensagem para %1$s no %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Mensagens de %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Mensagem publicada" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Esta página não está disponível em um " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " +"mensagens deste usuário. Se você não solicitou seguir as mensagens de " +"alguém, clique em \"Cancelar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para detalhes sobre como autorizar a " +"assinatura. Seu token de assinatura é:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para maiores detalhes em como rejeitar " +"completamente a assinatura." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler a URL '%s' do avatar" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagem errado para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Não foi possível redirecionar para o servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Procure no conteúdo das mensagens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Chamada de atenção enviada" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder a esta mensagem" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema ao salvar a mensagem." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nenhum código de confirmação." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Entrar" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecione uma operadora" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed de mensagens de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s marcaram sua mensagem como favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Não foi possível excluir a favorita." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Excluir a mensagem" + #~ msgid "Code not yet ready." #~ msgstr "O código ainda não está pronto." @@ -4949,9 +7746,6 @@ msgstr "Cancelar a assinatura deste usuário" #~ msgid "Tag a person" #~ msgstr "Etiquetar uma pessoa" -#~ msgid "List" -#~ msgstr "Lista" - #~ msgid "Icons" #~ msgstr "Ícones" diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index c4066c65e464c39bdb5fb82312ed509245e3209c..251292eae7b9f7459096f72739c52315e3c9a672 100644 GIT binary patch delta 29006 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